Ignore:
Timestamp:
05/26/10 14:11:55 (3 years ago)
Author:
zach
Message:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/html5/readme.txt

    r1026 r1071  
    2626To quickly get started, upload the contents of this ZIP to your webserver. Include the two javascripts in the <head> of your page(s). For example: 
    2727 
    28   <script type="text/javascript" src="/scripts/jquery.js"></script> 
    29   <script type="text/javascript" src="/scripts/jquery.jwplayer.js"></script> 
     28  <script type="text/javascript" src="jquery.js"></script> 
     29  <script type="text/javascript" src="jquery.jwplayer.js"></script> 
    3030 
    3131Second, place this code where you want the video to appear, replacing the "poster" and "src" attributes with your own poster image and video: 
    3232 
    33   <video height="270" id="player" poster="/files/bunny.jpg" src="/files/bunny.mp4" width="480"> 
     33  <video height="270" id="player" poster="image.jpg" src="video.mp4" width="480"> 
    3434 
    3535  <script type="text/javascript"> 
    3636    $('#player').jwplayer({ 
    37       flashplayer:'files/player.swf', 
    38       skin:'files/five.xml' 
     37      flashplayer:'player.swf', 
     38      skin:'five/five.xml' 
    3939    }); 
    4040  </script> 
Note: See TracChangeset for help on using the changeset viewer.