Anonymous
Not logged in
Talk
Contributions
Create account
Log in
Publication Station
Search
Editing
Courses/Design & Technique-Essential Web Design/Q2/06
(section)
From Publication Station
Namespaces
Page
Discussion
More
More
Page actions
Read
Edit
History
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
==media events== Using Javascript and jQuery is possible to interactively control the audio/video events. Here are a few examples<ref name="events">See more examples in: http://www.w3.org/2010/05/video/mediaevents.html http://www.w3.org/TR/html5/embedded-content-0.html#mediaevents</ref>: === play / pause with mouseover === [http://codepen.io/PublicationStation/pen/GNJRER See code in action in codepen] <source lang="html4strict"> <!DOCTYPE html> <html> <head> <script src="http://code.jquery.com/jquery-1.11.3.min.js"></script> <style> body {text-align:center;} div.videowrap {display: inline-block;} </style> </head> <body> <div class="videowrap"> <video id="testvideo" autoplay loop width=800 poster="http://static.ddmcdn.com/gif/tour-de-france-top-ways-the-race-has-changed-picnic-130619.jpg"> <source src="http://publicationstation.wdka.hro.nl/go-student/Andre-Castro/videos/tour.mp4" type="video/mp4"> </video> </div> <script> $(document).ready( function(){ video = $('video#testvideo')[0]; //video player on to variable $('div.videowrap').mouseover( function(){ video.play() }) .mouseout( function(){ video.pause() }) }) </script> </body> </html> </source> === move forward / back in currentTime === [http://codepen.io/PublicationStation/pen/jVPOmy See code in action in codepen] Left and right arrow keys change video's currenttime. <source lang="html4strict"> <script> $(document).ready( function(){ video = $('video#testvideo')[0]; //video player on to variable $( 'body').keydown(function( event ) { console.log(event); if ( event.key == 'ArrowLeft' ){ video.currentTime=video.currentTime-1;} if ( event.key == 'ArrowRight' ){ video.currentTime=video.currentTime+1;} }) }) </script> </source> instead of interacting with .currentTime it is possible to interact with * playbackRate playbackRate=1; // original playback rate playbackRate=0.1; // very slow playback rate playbackRate-=0.1; // decrease playback rate playbackRate+=0.1; // increase playback rate * volume playBackRate-=0.1; // playBackRate+=0.1
Summary:
Please note that all contributions to Publication Station are considered to be released under the Creative Commons Attribution-NonCommercial-ShareAlike (see
Publication Station:Copyrights
for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Navigation
Main navigation
Main page
Printmaking Studio
Print Studio
Dig. Publishing Studio
Namespaces
Grafiwiki
Random Page
Log in
Wiki tools
Wiki tools
Page tools
Page tools
User page tools
More
What links here
Related changes
Page information
Page logs