nicinabox / superslides

A fullscreen, hardware accelerated slider for jQuery.
http://archive.nicinabox.com/superslides
MIT License
1.51k stars 443 forks source link

HTML5 Video doesnt autoplay in chrome #346

Open pwcueblocks opened 8 years ago

pwcueblocks commented 8 years ago

When inserting html5 video inside the slider, the autoplay option of video doesn't work in chrome but works fine in firefox.

rpelorosso commented 8 years ago

That's true. A workaround is: $(document).on('init.slides', function() { var vid = document.getElementById("bgvid"); vid.play(); });