| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <html> | 3 <html> |
| 4 <head> | 4 <head> |
| 5 <style> | 5 <style> |
| 6 .box { | 6 .box { |
| 7 height: 100px; | 7 height: 100px; |
| 8 width: 100px; | 8 width: 100px; |
| 9 margin: 10px; | 9 margin: 10px; |
| 10 background-color: blue; | 10 background-color: blue; |
| 11 display: inline-block; | 11 display: inline-block; |
| 12 -webkit-transform:translateZ(0); | 12 transform:translateZ(0); |
| 13 -webkit-animation-duration:2s !important; | 13 -webkit-animation-duration:2s !important; |
| 14 } | 14 } |
| 15 | 15 |
| 16 #grayscale-box { | 16 #grayscale-box { |
| 17 -webkit-animation: grayscale-anim 2s linear | 17 -webkit-animation: grayscale-anim 2s linear |
| 18 } | 18 } |
| 19 | 19 |
| 20 #sepia-box { | 20 #sepia-box { |
| 21 -webkit-animation: sepia-anim 2s linear | 21 -webkit-animation: sepia-anim 2s linear |
| 22 } | 22 } |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 <div class="box" id="opacity-box"></div> | 135 <div class="box" id="opacity-box"></div> |
| 136 <div class="box" id="brightness-box"></div> | 136 <div class="box" id="brightness-box"></div> |
| 137 <div class="box" id="contrast-box"></div> | 137 <div class="box" id="contrast-box"></div> |
| 138 <div class="box" id="blur-box"></div> | 138 <div class="box" id="blur-box"></div> |
| 139 <!-- <div class="box" id="dropshadow-box"></div> --> | 139 <!-- <div class="box" id="dropshadow-box"></div> --> |
| 140 | 140 |
| 141 <div id="result"> | 141 <div id="result"> |
| 142 </div> | 142 </div> |
| 143 </body> | 143 </body> |
| 144 </html> | 144 </html> |
| OLD | NEW |