OLD | NEW |
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
2 "http://www.w3.org/TR/html4/loose.dtd"> | 2 "http://www.w3.org/TR/html4/loose.dtd"> |
3 | 3 |
4 <html lang="en"> | 4 <html lang="en"> |
5 <head> | 5 <head> |
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | 6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
7 <title>Transition Delay</title> | 7 <title>Transition Delay</title> |
8 <style> | 8 <style> |
9 #container { | 9 #container { |
10 position: absolute; | 10 position: absolute; |
11 width: 500px; | 11 width: 500px; |
12 height: 340px; | 12 height: 340px; |
13 border: 1px solid black; | 13 border: 1px solid black; |
14 } | 14 } |
15 | 15 |
16 .box { | 16 .box { |
17 position: relative; | 17 position: relative; |
18 width: 100px; | 18 width: 100px; |
19 height: 100px; | 19 height: 100px; |
20 margin: 10px; | 20 margin: 10px; |
21 background-color: #66F; | 21 background-color: #66F; |
22 z-index: 0; | 22 z-index: 0; |
23 } | 23 } |
24 | 24 |
25 #container.slide > .box { | 25 #container.slide > .box { |
26 -webkit-transform: translateX(380px); | 26 transform: translateX(380px); |
27 -webkit-transition-property: -webkit-transform; | 27 -webkit-transition-property: transform; |
28 -webkit-transition-duration: 2s; | 28 -webkit-transition-duration: 2s; |
29 } | 29 } |
30 | 30 |
31 #box1 { | 31 #box1 { |
32 -webkit-transition-delay: 200ms; | 32 -webkit-transition-delay: 200ms; |
33 } | 33 } |
34 | 34 |
35 #box2 { | 35 #box2 { |
36 -webkit-transition-delay: 2s; | 36 -webkit-transition-delay: 2s; |
37 } | 37 } |
(...skipping 12 matching lines...) Expand all Loading... |
50 </div> | 50 </div> |
51 <div class="box" id="box2"> | 51 <div class="box" id="box2"> |
52 Delay: 2s | 52 Delay: 2s |
53 </div> | 53 </div> |
54 <div class="box" id="box3"> | 54 <div class="box" id="box3"> |
55 Delay: 4s | 55 Delay: 4s |
56 </div> | 56 </div> |
57 </div> | 57 </div> |
58 </body> | 58 </body> |
59 </html> | 59 </html> |
OLD | NEW |