OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <meta charset="UTF-8"> | 2 <meta charset="UTF-8"> |
3 <style> | 3 <style> |
4 .target { | 4 .target { |
5 color: white; | 5 color: white; |
6 width: 100px; | 6 width: 100px; |
7 height: 100px; | 7 height: 100px; |
8 background-color: black; | 8 background-color: black; |
9 display: inline-block; | 9 display: inline-block; |
10 overflow: hidden; | 10 overflow: hidden; |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 }, [ | 66 }, [ |
67 {at: -1, is: 'scaleZ(0) perspective(300px)'}, | 67 {at: -1, is: 'scaleZ(0) perspective(300px)'}, |
68 {at: 0, is: 'scaleZ(1) perspective(400px)'}, | 68 {at: 0, is: 'scaleZ(1) perspective(400px)'}, |
69 {at: 0.25, is: 'scaleZ(1.25) perspective(425px)'}, | 69 {at: 0.25, is: 'scaleZ(1.25) perspective(425px)'}, |
70 {at: 0.75, is: 'scaleZ(1.75) perspective(475px)'}, | 70 {at: 0.75, is: 'scaleZ(1.75) perspective(475px)'}, |
71 {at: 1, is: 'scaleZ(2) perspective(500px)'}, | 71 {at: 1, is: 'scaleZ(2) perspective(500px)'}, |
72 {at: 2, is: 'scaleZ(3) perspective(600px)'}, | 72 {at: 2, is: 'scaleZ(3) perspective(600px)'}, |
73 ]); | 73 ]); |
74 </script> | 74 </script> |
75 </body> | 75 </body> |
OLD | NEW |