【发布时间】:2018-11-16 16:55:28
【问题描述】:
在我的网站的桌面版本中,视频会在后台自动播放。我希望视频不在移动设备上自动播放(即如果屏幕宽度
<video id="background-video" autoplay loop muted>
<source type="video/mp4" src="http://fiercefreedom.org/wp-content/uploads/2018/10/FierceCropped.mp4">
</video>
$(document).ready(function(){
var screenWidth = $(window).width();
if (screenWidth < 800){
$('#background-video').removeAttr('autoplay');
} else {
$('background-video').attr('autoplay');
}
});
【问题讨论】:
-
仅供参考
$('background-video').attr('autoplay');缺少#字符。 -
感谢您指出这一点。
标签: javascript html video mobile autoplay