OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 | 2 |
3 <html> | 3 <html> |
4 <head> | 4 <head> |
5 <script> | |
6 if (window.internals) | |
7 window.internals.settings.setCSSExclusionsEnabled(true); | |
8 </script> | |
9 <style> | 5 <style> |
10 .box { | 6 .box { |
11 height: 100px; | 7 height: 100px; |
12 width: 100px; | 8 width: 100px; |
13 margin: 10px; | 9 margin: 10px; |
14 display: inline-block; | 10 display: inline-block; |
15 } | 11 } |
16 | 12 |
17 #rectangle-box { | 13 #rectangle-box { |
18 -webkit-animation: rectangle-anim 2s linear | 14 -webkit-animation: rectangle-anim 2s linear |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 | 65 |
70 <div class="box" id="rectangle-box">Moving Text</div> | 66 <div class="box" id="rectangle-box">Moving Text</div> |
71 <div class="box" id="circle-box">Moving Text</div> | 67 <div class="box" id="circle-box">Moving Text</div> |
72 <div class="box" id="ellipse-box">Moving Text</div> | 68 <div class="box" id="ellipse-box">Moving Text</div> |
73 <div class="box" id="polygon-box">Moving Text</div> | 69 <div class="box" id="polygon-box">Moving Text</div> |
74 | 70 |
75 <div id="result"> | 71 <div id="result"> |
76 </div> | 72 </div> |
77 </body> | 73 </body> |
78 </html> | 74 </html> |
OLD | NEW |