| 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>Slideshow</title> | 5 <title>Slideshow</title> |
| 6 <style> | 6 <style> |
| 7 | 7 |
| 8 body { | 8 body { |
| 9 overflow: hidden; | 9 overflow: hidden; |
| 10 background: black; | 10 background: black; |
| 11 -webkit-transform: translateZ(0); |
| 11 } | 12 } |
| 12 | 13 |
| 13 #glow { | 14 #glow { |
| 14 left: 0; | 15 left: 0; |
| 15 right: 0; | 16 right: 0; |
| 16 bottom: 30px; | 17 bottom: 30px; |
| 17 height: 8px; | 18 height: 8px; |
| 18 opacity: .4; | 19 opacity: .4; |
| 19 position: absolute; | 20 position: absolute; |
| 20 background: -webkit-linear-gradient(transparent, white); | 21 background: -webkit-linear-gradient(transparent, white); |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 <div id="playercontrols"> | 231 <div id="playercontrols"> |
| 231 <button id="prevbutton" onclick="prevButtonClick()"> | 232 <button id="prevbutton" onclick="prevButtonClick()"> |
| 232 <div></div> | 233 <div></div> |
| 233 </button> | 234 </button> |
| 234 <button id="nextbutton" onclick="nextButtonClick()"> | 235 <button id="nextbutton" onclick="nextButtonClick()"> |
| 235 <div></div> | 236 <div></div> |
| 236 </button> | 237 </button> |
| 237 </div> | 238 </div> |
| 238 </body> | 239 </body> |
| 239 </html> | 240 </html> |
| OLD | NEW |