Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a problem with html5 video in chrome on Windows. The Video ist playing fine. But if it ends, the video doesn't fadeout. Instead of fading out, the "divx" icon shows and nothing happens. It seems that chrome doesnt notice that the video ends.

If I set the video in a loop, the video loops all the time in Chrome (on Mac everything works fine on all browsers / also in firefox on Win).

here is my javascrip:

<script type="text/javascript">
            $(document).ready(function(){
                var video = $('video')[0];
                video.addEventListener('ended', function () {
                    $('video').fadeOut(200);
                }, false);
                video.play();     
            });
        </script>

heres my html:

<video id="video" autoplay preload>
            <source src="animation/animation.mp4" width="100%" height="100%" type="video/mp4";>
            <source src="animation/Komp.ogv" width="100%" height="100%" type="video/ogg";>
</video>

I would be very glad if someone can help me.

share|improve this question
every where you're using reference of $('video')[0] to refer to the element except inside the event listener...see maybe that is the problem. – Alex_B Nov 30 '12 at 13:50
or change the reference inside to $(this).fadeOut(200); – Alex_B Nov 30 '12 at 13:52

2 Answers

Avoid using addEventListener.It suports in IE9 and later versions.Keep it simple and prefer using bind event.....try this for fadeout:

<script type="text/javascript">
        $(document).ready(function(){
$('#video').bind('ended', function(){
   $(this).fadeOut(200);
});
});
</script>
share|improve this answer
sadly there ist the same problem as before. the "divx" icon shows and nothing happens... – D.Steinel Nov 30 '12 at 15:00

Thanks for your help guys. I fixed it finally with disabling the Divx-Webplayer plugin. The video didn't react on fadeOut or hide or something like that. Without the plugin everything works fine!

share|improve this answer

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.