窗口变化时改变视频的大小

$(window).on("resize", function () {
vSize();
})
function vSize() {
setTimeout(function () {
$(".FullPageSection .videobox video").css({ "transform": "scaleY(" + ($(".videobox").height() / $(".videobox video").height()*1.28)+ ")", "margin-top": -($(".videobox video").height() - $(".videobox").height()) / 2 })
}, 300)
}

posted on 2017-03-15 14:16  sunnie_c  阅读(163)  评论(0编辑  收藏  举报