OLD | NEW |
---|---|
1 <!doctype html> | 1 <!doctype html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>cubic-bezier value overflow: Transforms</title> | 4 <title>cubic-bezier value overflow: Transforms</title> |
5 <style> | 5 <style> |
6 .box { | 6 .box { |
7 position: relative; | 7 position: relative; |
8 left: 0; | 8 left: 0; |
9 height: 100px; | 9 height: 100px; |
10 width: 100px; | 10 width: 100px; |
11 margin: 10px; | 11 margin: 10px; |
12 background-color: blue; | 12 background-color: blue; |
13 -webkit-transition: -webkit-transform 1s linear; | 13 -webkit-transition: -webkit-transform 1s linear; |
alancutter (OOO until 2018)
2014/10/14 05:13:49
Need to change the transition property target as w
| |
14 -webkit-transform: rotate(0deg); | 14 transform: rotate(0deg); |
15 } | 15 } |
16 .animating > .box { | 16 .animating > .box { |
17 -webkit-transform: rotate(180deg); | 17 transform: rotate(180deg); |
18 } | 18 } |
19 </style> | 19 </style> |
20 <script src="../animations/resources/animation-test-helpers.js"></script> | 20 <script src="../animations/resources/animation-test-helpers.js"></script> |
21 <script> | 21 <script> |
22 function DegreesToRotation(angle) { | 22 function DegreesToRotation(angle) { |
23 return roundNumber(Math.cos(angle * Math.PI / 180), 5); | 23 return roundNumber(Math.cos(angle * Math.PI / 180), 5); |
24 } | 24 } |
25 | 25 |
26 const expectedValues = [ | 26 const expectedValues = [ |
27 // [time, element-id, property, expected-value, tolerance] | 27 // [time, element-id, property, expected-value, tolerance] |
(...skipping 19 matching lines...) Expand all Loading... | |
47 <body> | 47 <body> |
48 <div id="container"> | 48 <div id="container"> |
49 <div class="box" id="box1" style="-webkit-transition-timing-function: cubi c-bezier(0.3, 1.5, 0.8, 1.5);"></div> | 49 <div class="box" id="box1" style="-webkit-transition-timing-function: cubi c-bezier(0.3, 1.5, 0.8, 1.5);"></div> |
50 <div class="box" id="box2" style="-webkit-transition-timing-function: cubi c-bezier(0.4, -0.8, 0.7, 1.7);"></div> | 50 <div class="box" id="box2" style="-webkit-transition-timing-function: cubi c-bezier(0.4, -0.8, 0.7, 1.7);"></div> |
51 <div class="box" id="box3" style="-webkit-transition-timing-function: cubi c-bezier(0.7, -2, 1, -1.5);"></div> | 51 <div class="box" id="box3" style="-webkit-transition-timing-function: cubi c-bezier(0.7, -2, 1, -1.5);"></div> |
52 <div class="box" id="box4" style="-webkit-transition-timing-function: cubi c-bezier(0, 4, 1, -3);"></div> | 52 <div class="box" id="box4" style="-webkit-transition-timing-function: cubi c-bezier(0, 4, 1, -3);"></div> |
53 </div> | 53 </div> |
54 <div id="result"></div> | 54 <div id="result"></div> |
55 </body> | 55 </body> |
56 </html> | 56 </html> |
OLD | NEW |