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 display: inline-block; | 5 display: inline-block; |
6 -webkit-perspective: 50; | 6 -webkit-perspective: 50; |
7 perspective: 50; | 7 perspective: 50; |
8 margin-top: 50px; | 8 margin-top: 50px; |
9 margin-bottom: 25px; | 9 margin-bottom: 25px; |
10 } | 10 } |
(...skipping 28 matching lines...) Expand all Loading... |
39 }, [ | 39 }, [ |
40 {at: -0.3, is: '-30% 20%'}, | 40 {at: -0.3, is: '-30% 20%'}, |
41 {at: 0, is: '0% 50%'}, | 41 {at: 0, is: '0% 50%'}, |
42 {at: 0.3, is: '30% 80%'}, | 42 {at: 0.3, is: '30% 80%'}, |
43 {at: 0.6, is: '60% 110%'}, | 43 {at: 0.6, is: '60% 110%'}, |
44 {at: 1, is: '100% 150%'}, | 44 {at: 1, is: '100% 150%'}, |
45 {at: 1.5, is: '150% 200%'} | 45 {at: 1.5, is: '150% 200%'} |
46 ]); | 46 ]); |
47 </script> | 47 </script> |
48 </body> | 48 </body> |
OLD | NEW |