Hi I am trying to use the html5 video as first element in the slideshow. I using the slides from http://slidesjs.com/. The problem is if i click on the play button to play the video, the slideshow should stop until the video finishes completely and then the slideshow should move to the next slide. also the hoverpause works only on images but not on html5 video element. Any idea on how to achieve this would be great.
<script type="text/javascript">
$(function () {
$('#slides').slides({
preload: true,
preloadImage: 'Images/loading.gif',
play: 5000,
pause: 2500,
hoverPause: true
});
});
</script>