Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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>
share|improve this question

2 Answers

Media Events has an overview of the exposed events you can tap into. You should simply stop the slideshow on the play event and restart it on the ended event.

Example: <video ... onPlay="//DoJSStuffHere" onEnded="//DoOtherJSStuffHere" />

share|improve this answer
thanks semyazas.that makes sense. but how do you get the current state of the video element? – sam Aug 2 '11 at 11:30
There is a playing state you could check for, as well as a pause but i personally guess it will be enough to stop the slides on a beginning play and run it further on a pause as those events will HAVE to happen to make the video run or stop. See my updated answer – Semyazas Aug 2 '11 at 11:33
thanks semaz. I will try that and let you know. cheers! – sam Aug 2 '11 at 11:50
Ehm I wouldn't recomend adding on attributes on any elements..guh! Do it completely with javascript. – tbleckert Aug 2 '11 at 11:58
That's just a basic example to give him the opportunity to do a quick check. True though, the example is in this case far from ideal – Semyazas Aug 2 '11 at 12:01
show 1 more comment

Like Semyazas says, but skip the on-attributes and do it with javascript:

var v = document.getElementById("id-of-movie");
//$(v).bind('pause', function () { the video gets paused }
//$(v).bind('play', function () { do something when the video starts playing, fired by v.play()
//$(v).bind('ended', function () { the video has ended }
share|improve this answer
var v = $('#id-of-movie'); if he's using jQuery anyways ;-) – Semyazas Aug 2 '11 at 12:05
Cannot do that, if you do that, you also need to add $('#id-of-movie').get(0); :) – tbleckert Aug 2 '11 at 12:07
It's still far better than switching out of the framework and back in. That way lies syntax-errors – Semyazas Aug 2 '11 at 12:08
Btw, that gave me something to think. I can remember successfully not using the .get(0); So i just tried it: jsfiddle.net/yQFQX and as you can see...it works – Semyazas Aug 2 '11 at 12:17
Ehm...I meant to the video element... – tbleckert Aug 2 '11 at 12:21
show 6 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.