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 transform: translateZ(0); | 9 transform: translateZ(0); |
10 opacity: 0.95; | |
11 } | 10 } |
12 .container { | 11 .container { |
13 position: absolute; | 12 position: absolute; |
14 } | 13 } |
15 .shifter { | 14 .shifter { |
16 position: absolute; | 15 position: absolute; |
17 background-color: black; | 16 background-color: black; |
18 width: 12.5px; | 17 width: 12.5px; |
19 height: 12.5px; | 18 height: 12.5px; |
20 } | 19 } |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 | 56 |
58 // And in 8x8 (where exactly 0.5 is more common) | 57 // And in 8x8 (where exactly 0.5 is more common) |
59 setupGrid(10, 200, 0, 0.125, 20); | 58 setupGrid(10, 200, 0, 0.125, 20); |
60 setupGrid(300, 200, 0.125, 0, 20); | 59 setupGrid(300, 200, 0.125, 0, 20); |
61 } | 60 } |
62 | 61 |
63 setupTest(); | 62 setupTest(); |
64 </script> | 63 </script> |
65 </body> | 64 </body> |
66 </html> | 65 </html> |
OLD | NEW |