equal
deleted
inserted
replaced
1 <!DOCTYPE html> |
|
2 <html lang="fr"> |
|
3 <head> |
|
4 <meta charset="utf-8"> |
|
5 <title>The End - @todo</title> |
|
6 <link rel="stylesheet" href="static/res/css/style.css" /> |
|
7 </head> |
|
8 <body> |
|
9 |
|
10 <!-- Content Video + Controls --> |
|
11 <div id="playerContainer"> |
|
12 <!-- Video --> |
|
13 <div id="video"> |
|
14 </div> |
|
15 <!-- /Video --> |
|
16 |
|
17 <!-- Controls container --> |
|
18 <div id="controlContainer"> |
|
19 <div id="controlbar"> |
|
20 <button id="btnPlay" class="bnt" |
|
21 onClick="incPlayer.ctrlPlay(this);">Play/Pause</button><!-- |
|
22 |
|
23 --><button id="btnBck" class="bnt" |
|
24 onClick="incPlayer.ctrlBackward(this);">Back</button><!-- |
|
25 |
|
26 --><button id="btnFwd" class="bnt" |
|
27 onClick="incPlayer.ctrlForward(this);">Forward</button><!-- |
|
28 |
|
29 --><button id="btnFullScr" class="bnt" |
|
30 onClick="incPlayer.ctrlFullscreen(this);">FS</button><!-- |
|
31 |
|
32 --><button id="btnHD" class="bnt" |
|
33 onClick="incPlayer.ctrlHd(this);">HD</button> |
|
34 </div> |
|
35 </div> |
|
36 <!-- /Controlbar container --> |
|
37 </div> |
|
38 <!-- /Content Video + Controls --> |
|
39 |
|
40 <!-- jQuery --> |
|
41 <script src="static/res/js/jquery-1.8.2.min.js"></script> |
|
42 <script src="static/res/js/popcorn-complete.js"></script> |
|
43 <script src="static/res/js/popcorn.sequence.js"></script> |
|
44 <script src="static/res/js/incplayer.js"></script> |
|
45 <script> |
|
46 $(function() { |
|
47 if (incPlayer.init("video", "#playButton", "static/res/json/sequences.json", true)) { |
|
48 incPlayer.createPopSequence(); |
|
49 } |
|
50 }); |
|
51 </script> |
|
52 </body> |
|
53 </html> |
|