OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <meta charset="UTF-8"> | |
3 <style> | |
4 .target { | |
5 width: 120px; | |
6 height: 120px; | |
7 display: inline-block; | |
8 border: 2px solid black; | |
9 background-repeat: no-repeat; | |
10 background-image: radial-gradient(circle 20px at 20px 20px, red 0px, red 18px, transparent 20px), radial-gradient(circle 20px at 20px 20px, yellow 0px, yellow 18px, transparent 20px), radial-gradient(circle 20px at 20px 20px, lime 0px, li me 18px, transparent 20px), radial-gradient(circle 20px at 20px 20px, blue 0px, blue 18px, transparent 20px); | |
Steve Block
2013/10/08 23:21:49
Does each of the radial-gradient()s need to be so
alancutter (OOO until 2018)
2013/10/09 07:20:55
Simplified the syntax a little and put them on ind
| |
11 } | |
12 .replica { | |
13 margin-right: 10px; | |
14 } | |
15 </style> | |
16 <body> | |
17 <script src="resources/interpolation-test.js"></script> | |
18 <script> | |
19 assertInterpolation({ | |
20 property: 'background-position', | |
21 from: '0px 0px, 80px 0px', | |
22 to: '40px 40px, 80px 80px, 0px 80px' | |
Steve Block
2013/10/08 23:21:49
It looks like you have 4 backgrounds and test anim
alancutter (OOO until 2018)
2013/10/09 07:20:55
It's actually testing from 2 positions to 3 positi
Steve Block
2013/10/09 23:19:05
Sorry, that was a typo. I meant 2 to 3.
| |
23 }, [ | |
24 {at: -0.25, is: '-10px -10px, 80px -20px, 0px -20px, 90px -10px'}, | |
25 {at: 0, is: '0px 0px, 80px 0px, 0px 0px, 80px 0px'}, | |
26 {at: 0.25, is: '10px 10px, 80px 20px, 0px 20px, 70px 10px'}, | |
27 {at: 0.5, is: '20px 20px, 80px 40px, 0px 40px, 60px 20px'}, | |
28 {at: 0.75, is: '30px 30px, 80px 60px, 0px 60px, 50px 30px'}, | |
29 {at: 1, is: '40px 40px, 80px 80px, 0px 80px, 40px 40px'}, | |
30 {at: 1.25, is: '50px 50px, 80px 100px, 0px 100px, 30px 50px'}, | |
Steve Block
2013/10/08 23:21:49
It might not be 'correct' style, but this would be
alancutter (OOO until 2018)
2013/10/09 07:20:55
Done.
| |
31 ]); | |
32 </script> | |
33 </body> | |
OLD | NEW |