私はこのページでgeorgepaterson/jquery-videobackgroundを使用しています:
http://kimcolemanprojects.com/index.html
ビデオをループさせたいのですが、JQuery内でこれを行う方法がわかりませんか?
$(document).ready(function() {
$('dl').toggle();
$('h2').bind('click', function(event) {
event.preventDefault();
$(this).next('dl').slideToggle(500, function() {
$('.video-background').videobackground('resize');
});
});
$('body').prepend('<div class="video-background"></div>');
$('.video-background').videobackground({
videoSource: [['video/ribbons_450x360.mp4', 'video/mp4'],
['video/ribbons_450x360.webmhd.webm', 'video/webm'],
['video/ribbons_450x360.oggtheora.ogv', 'video/ogg']],
controlPosition: '#main',
poster: 'video/ribbs.png',
loadedCallback: function() {
$(this).videobackground('mute');
}
});
});