OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style> | 4 <style> |
5 #test { | 5 #test { |
6 margin: 5px; | 6 margin: 5px; |
7 } | 7 } |
8 #test.composite > .container { | 8 #test.composite > .container { |
9 -webkit-transform: translateZ(0); | 9 transform: translateZ(0); |
10 opacity: 0.95; | 10 opacity: 0.95; |
11 } | 11 } |
12 .container { | 12 .container { |
13 position: absolute; | 13 position: absolute; |
14 } | 14 } |
15 .shifter { | 15 .shifter { |
16 position: absolute; | 16 position: absolute; |
17 background-color: black; | 17 background-color: black; |
18 width: 12.5px; | 18 width: 12.5px; |
19 height: 12.5px; | 19 height: 12.5px; |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 | 57 |
58 // And in 8x8 (where exactly 0.5 is more common) | 58 // And in 8x8 (where exactly 0.5 is more common) |
59 setupGrid(10, 200, 0, 0.125, 20); | 59 setupGrid(10, 200, 0, 0.125, 20); |
60 setupGrid(300, 200, 0.125, 0, 20); | 60 setupGrid(300, 200, 0.125, 0, 20); |
61 } | 61 } |
62 | 62 |
63 setupTest(); | 63 setupTest(); |
64 </script> | 64 </script> |
65 </body> | 65 </body> |
66 </html> | 66 </html> |
OLD | NEW |