OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <html i18n-values="dir:textdirection;"> | 2 <html i18n-values="dir:textdirection;"> |
3 <head> | 3 <head> |
4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
5 <title>Media Player</title> | 5 <title>Media Player</title> |
6 <style type="text/css"> | 6 <style type="text/css"> |
7 | 7 |
8 body { | 8 body { |
9 overflow: hidden; | 9 overflow: hidden; |
10 background: black; | 10 background: black; |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 .playercontrolsbox { | 52 .playercontrolsbox { |
53 bottom: 0; | 53 bottom: 0; |
54 left: 0; | 54 left: 0; |
55 height: 30px; | 55 height: 30px; |
56 right: 0; | 56 right: 0; |
57 position: absolute; | 57 position: absolute; |
58 } | 58 } |
59 | 59 |
60 .videocontrols { | 60 .videocontrols { |
61 top: 0; | 61 top: 0; |
62 -webkit-transition: top 0.5s ease-out; | 62 -webkit-transition: top 500ms ease-out; |
63 left: 0; | 63 left: 0; |
64 z-index: 999; | 64 z-index: 999; |
65 height: 100%; | 65 height: 100%; |
66 opacity: .9; | 66 opacity: .9; |
67 right: 0; | 67 right: 0; |
68 position: absolute; | 68 position: absolute; |
69 background: -webkit-linear-gradient(#323232, #070707); | 69 background: -webkit-linear-gradient(#323232, #070707); |
70 } | 70 } |
71 | 71 |
72 .sliderback { | 72 .sliderback { |
(...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
866 <body onload='load();' onselectstart='return false'> | 866 <body onload='load();' onselectstart='return false'> |
867 <div id='error' class='error'></div> | 867 <div id='error' class='error'></div> |
868 <div id='title' class='audiotitle'></div> | 868 <div id='title' class='audiotitle'></div> |
869 <div id='glow' class='glow'></div> | 869 <div id='glow' class='glow'></div> |
870 <div class='playercontrolsbox'> | 870 <div class='playercontrolsbox'> |
871 <div id='playercontrols'> | 871 <div id='playercontrols'> |
872 </div> | 872 </div> |
873 </div> | 873 </div> |
874 </body> | 874 </body> |
875 </html> | 875 </html> |
OLD | NEW |