解决video标签poster视频图片显示不全,有黑边问题

//解决视频图片显示不全问题
$('video').each(function() {
    $(this).css('poster', function(index, oldValue) {
        $(this).css('object-fit', 'fill');
        return oldValue;
    });
});