A simple video player with jQuery and Flash. Double-click player to view full screen.
If you don't like the default settings, you can open the jv.js file and change the following:
The video player works by clicking on links that have the following format:
<a href="video/one.flv" class="jv_loader" rel="./thumbs/one.jpg">Play Video One</a>
The different coloured sections represent:
To have the video play as soon as a link is clicked, simply add the autoplay class to it:
<a href="video/one.flv" class="jv_loader autoplay " rel="./thumbs/one.jpg">Play Video One</a>
Add a div element with an id of "jv_player" to your page. When a link is clicked, the video will appear in its place.
<div id="jv_player">Video will appear here</div>
Add a link with a class of "jv_unloader" and the rel value set to the id of the video player element you wish to remove.
<a href="#" class="jv_unloader" rel="jv_player" >Remove the video </a>
jv_player.zip (with example movies, ~1.6 MB)
jv_player_slim.zip (without movies, ~113 KB)