Let’s say I have a page with 2 divs. In the first div I have a video. After the video plays the 30 second clip THEN i want the second div to show an “about video” text. How can i accomplish this?
Code:
<div class="clip"> (This is the first div)
<video width="560" height="340" controls>
<source src="media/clip.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'>
<source src="media/clip.ogv" type='video/ogg; codecs="theora, vorbis"'>
</video>
</div>
<div class="about_video"> (This is the second div)
Clip by Person. The clip is about sample..
</div>
I have a similar demo here : http://jsfiddle.net/frictionless/NNCRR/
The top bar appears after a delay of 5000 milliseconds or 5 seconds
Hope this helps
For more check http://api.jquery.com/delay/