我需要在我的脚本中再添加一个功能,以使我的视频在完成后自动开始。这是脚本。我可能知道我必须将currentTime
属性设置回 0。如何在我的脚本中配置它?还有其他方法可以实现吗?我正在使用这个jQuery 插件
<script>
$(document).ready(function() {
$('dl').toggle();
$('h2').bind('click', function(event) {
event.preventDefault();
$(this).next('dl').slideToggle(500, function() {
$('.video-background').videobackground('resize');
});
});
$('.main').prepend('<div class="video-background"></div>');
$('.video-background').videobackground({
videoSource: [['video/TimeLapse_Barcelona.mp4', 'video/mp4'],
['video/TimeLapse_Barcelona.webm', 'video/webm'],
['video/TimeLapse_Barcelona.theora.ogv', 'video/ogg']],
controlPosition: '#main',
poster: 'video/big-buck-bunny.jpg',
loadedCallback: function() {
$(this).videobackground('mute');
}
});
});
</script>