I have a simple video HTML tag and controlled by the arrow image. If I click on arrow, the video starts to play. I'd like to show the arrow when the video stops or is paused.
Simple jQuery script, which does not work:
var video = $("#myvideo").get(0);
$(".video-arrow").click(function(){
if (video.paused) {
video.play();
$(this).hide();
}
else{
video.pause();
$(this).show();
}
});
<div class="video">
<video id="myvideo" title="My amazing video" poster="images/banner-r-img.png" preload="auto" controls>
<source src="videos/intro.mp4" type="video/mp4" />
<source src="videos/intro.ogv" type="video/ogg" />
<source src="videos/intro.webm" type="video/webm" />
Video tag not supported. Download the video <a href="movie.webm">here</a>.
</video>
</div>
.video-arrow{
width:121px;
height:120px;
background: url(../images/video-arrow.png) no-repeat;
position:absolute;
left:655px;
top:122px;
z-index:100;
cursor:pointer;
}
I have also a poster attribute which shows fine at the start, but I'd like to show up the poster when the video stops to play.
I'd also try to use already made video gallery but they are all to heavy and also I'd rather do as simple as possible ..
How to do that?
Thanks for your answers ...
When the page is loaded, the poster and the arrow shows as they are supposed to be shown ... when I click on arrow, the video starts to play, the arrow is still shown, so I hide the arrow with jQuery...and if I click again on video, the video is paused and I'd like the arrow to be shown again. How?