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