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 } | 13 } |
14 | 14 |
15 #grayscale-box { | 15 #grayscale-box { |
16 -webkit-animation: grayscale-anim 2s linear | 16 -webkit-animation: grayscale-anim 2s linear |
17 } | 17 } |
18 | 18 |
19 #sepia-box { | 19 #sepia-box { |
20 -webkit-animation: sepia-anim 2s linear | 20 -webkit-animation: sepia-anim 2s linear |
21 } | 21 } |
22 | 22 |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 <div class="box" id="opacity-box"></div> | 143 <div class="box" id="opacity-box"></div> |
144 <div class="box" id="brightness-box"></div> | 144 <div class="box" id="brightness-box"></div> |
145 <div class="box" id="contrast-box"></div> | 145 <div class="box" id="contrast-box"></div> |
146 <div class="box" id="blur-box"></div> | 146 <div class="box" id="blur-box"></div> |
147 <!-- <div class="box" id="dropshadow-box"></div> --> | 147 <!-- <div class="box" id="dropshadow-box"></div> --> |
148 | 148 |
149 <div id="result"> | 149 <div id="result"> |
150 </div> | 150 </div> |
151 </body> | 151 </body> |
152 </html> | 152 </html> |
OLD | NEW |