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 background-color: black; | 5 background-color: black; |
6 width: 100px; | 6 width: 100px; |
7 } | 7 } |
8 .replica { | 8 .replica { |
9 background-color: green; | 9 background-color: green; |
10 } | 10 } |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 }, [ | 75 }, [ |
76 {at: -0.3, is: from}, | 76 {at: -0.3, is: from}, |
77 {at: 0, is: from}, | 77 {at: 0, is: from}, |
78 {at: 0.3, is: '-webkit-cross-fade(' + from + ', ' + to + ', 0.3)'}, | 78 {at: 0.3, is: '-webkit-cross-fade(' + from + ', ' + to + ', 0.3)'}, |
79 {at: 0.6, is: '-webkit-cross-fade(' + from + ', ' + to + ', 0.6)'}, | 79 {at: 0.6, is: '-webkit-cross-fade(' + from + ', ' + to + ', 0.6)'}, |
80 {at: 1, is: to}, | 80 {at: 1, is: to}, |
81 {at: 1.5, is: to}, | 81 {at: 1.5, is: to}, |
82 ]); | 82 ]); |
83 </script> | 83 </script> |
84 </body> | 84 </body> |
OLD | NEW |