OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 | 2 |
3 <html> | 3 <html> |
4 <head> | 4 <head> |
5 <style> | 5 <style> |
6 .container { | 6 .container { |
7 position: relative; | 7 position: relative; |
8 height: 300px; | 8 height: 300px; |
9 width: 300px; | 9 width: 300px; |
10 margin: 10px; | 10 margin: 10px; |
11 background-color: green; | 11 background-color: green; |
12 -webkit-transition-property: opacity; | 12 transition-property: opacity; |
13 -webkit-transition-timing-function: linear; | 13 transition-timing-function: linear; |
14 -webkit-transition-duration: 5s; | 14 transition-duration: 5s; |
15 } | 15 } |
16 | 16 |
17 #first { | 17 #first { |
18 opacity: 0.5; | 18 opacity: 0.5; |
19 } | 19 } |
20 | 20 |
21 .box { | 21 .box { |
22 position: absolute; | 22 position: absolute; |
23 left: 10px; | 23 left: 10px; |
24 top: 10px; | 24 top: 10px; |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 </head> | 61 </head> |
62 <body> | 62 <body> |
63 | 63 |
64 <div class="container" id="first"> | 64 <div class="container" id="first"> |
65 <div class="box"></div> | 65 <div class="box"></div> |
66 <div class="indicator"></div> | 66 <div class="indicator"></div> |
67 </div> | 67 </div> |
68 | 68 |
69 </body> | 69 </body> |
70 </html> | 70 </html> |
OLD | NEW |