web/index2.html
changeset 18 f6232b308fbd
child 19 26ab64495127
equal deleted inserted replaced
17:ec4f33084f8d 18:f6232b308fbd
       
     1 <!doctype html>
       
     2 <html lang="en">
       
     3 <head>
       
     4     <meta charset="utf-8">
       
     5     <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" /> 
       
     6     <meta name="apple-mobile-web-app-capable" content="yes" />
       
     7     <title>The End Player Test</title>
       
     8     <link rel="stylesheet" href="static/res/css/style2.css">
       
     9 </head>
       
    10 <body bgcolor="#000000">
       
    11 
       
    12     <section id="main">
       
    13         
       
    14         <div id="videos">
       
    15         </div> 
       
    16 
       
    17         <div id="controls">
       
    18             <input id="playButton" type="image" src="static/res/img/ctrlplay.jpg"
       
    19                 onMouseOver="this.src='static/res/img/ctrlplayover.jpg'" 
       
    20                 onMouseOut="this.src='static/res/img/ctrlplay.jpg'" 
       
    21                 onClick="incPlayer.ctrlPlay(this);"
       
    22             >        
       
    23             <input type="image" src="static/res/img/ctrlback.jpg"
       
    24                 onMouseOver="this.src='static/res/img/ctrlbackover.jpg'" 
       
    25                 onMouseOut="this.src='static/res/img/ctrlback.jpg'" 
       
    26                 onClick="incPlayer.ctrlBackward(this);"
       
    27             >        
       
    28             <input type="image" src="static/res/img/ctrlnext.jpg"
       
    29                 onMouseOver="this.src='static/res/img/ctrlnextover.jpg'" 
       
    30                 onMouseOut="this.src='static/res/img/ctrlnext.jpg'" 
       
    31                 onClick="incPlayer.ctrlForward(this);"
       
    32             >        
       
    33             <input type="image" src="static/res/img/ctrlfullscreen.jpg"
       
    34                 onMouseOver="this.src='static/res/img/ctrlfullscreenover.jpg'" 
       
    35                 onMouseOut="this.src='static/res/img/ctrlfullscreen.jpg'" 
       
    36                 onClick="incPlayer.ctrlFullScreen(this);"
       
    37             >        
       
    38             <input type="image" src="static/res/img/ctrlhd.jpg"
       
    39                 onMouseOver="this.src='static/res/img/ctrlhdover.jpg'" 
       
    40                 onMouseOut="this.src='static/res/img/ctrlhd.jpg'" 
       
    41                 onClick="incPlayer.ctrlHd(this);"
       
    42             >        
       
    43         </div> 
       
    44 
       
    45     <br><br>
       
    46     <font id="message" size="9" color="ffffff">void</font>            
       
    47 
       
    48     </section>
       
    49    
       
    50     <script src="static/res/js/popcorn-complete.js"></script>
       
    51     <script src="static/res/js/popcorn.sequence.js"></script>
       
    52     <script src="static/res/js/jquery-1.8.2.min.js"></script>
       
    53     <script src="static/res/js/incplayer.js"></script>    
       
    54     <script>        
       
    55         $(function() {
       
    56             if (incPlayer.init("videos", "#playButton", "static/res/json/sequences2.json", false)) {
       
    57                 incPlayer.createPopSequence();
       
    58             }        
       
    59         });
       
    60     </script>
       
    61 </body>
       
    62 </html>