| 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 margin-top: 50px; | 6 margin-top: 50px; |
| 7 margin-bottom: 25px; | 7 margin-bottom: 25px; |
| 8 } | 8 } |
| 9 .transformed { | 9 .transformed { |
| 10 width: 50px; | 10 width: 50px; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 {at: -1, is: 'none'}, // perspective does not accept 0 or negative values | 39 {at: -1, is: 'none'}, // perspective does not accept 0 or negative values |
| 40 {at: -0.3, is: '35px'}, | 40 {at: -0.3, is: '35px'}, |
| 41 {at: 0, is: '50px'}, | 41 {at: 0, is: '50px'}, |
| 42 {at: 0.3, is: '65px'}, | 42 {at: 0.3, is: '65px'}, |
| 43 {at: 0.6, is: '80px'}, | 43 {at: 0.6, is: '80px'}, |
| 44 {at: 1, is: '100px'}, | 44 {at: 1, is: '100px'}, |
| 45 {at: 1.5, is: '125px'} | 45 {at: 1.5, is: '125px'} |
| 46 ]); | 46 ]); |
| 47 </script> | 47 </script> |
| 48 </body> | 48 </body> |
| OLD | NEW |