0
我使用this script在我的主頁上放置視頻。當屏幕變寬時,視頻不會全寬
問題是,當您用瀏覽器窗口查看全寬和50%的高度時,它不會填滿整個窗口。
$(element).each(function(){
var videoAspectRatio = $(this).data('height')/$(this).data('width'),
windowAspectRatio = windowHeight/windowWidth;
if (videoAspectRatio > windowAspectRatio) {
videoWidth = windowWidth;
videoHeight = videoWidth * videoAspectRatio;
$(this).css({'top' : -(videoHeight - windowHeight)/2 + 'px', 'margin-left' : 0});
} else {
videoHeight = windowHeight;
videoWidth = videoHeight/videoAspectRatio;
$(this).css({'margin-top' : 0, 'margin-left' : -(videoWidth - windowWidth)/2 + 'px'});
}
夠搞怪它工作的其他方式(寬度設置爲屏幕和全高度的30%)
我敢肯定,它在保持尺寸,我凸狀部無法弄清楚如何改變它。
那沒有工作,這也將打破視頻裏的高度比寬度大得多... – Elmer