Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <style> | |
| 2 div{ | |
| 3 width: 0; | |
| 4 height: 0; | |
| 5 margin: 10px; | |
| 6 border-right: solid 10px aqua; | |
| 7 border-left: solid 10px aqua; | |
| 8 border-top: solid 10px red; | |
| 9 border-bottom: solid 10px red; | |
| 10 animation-name: test; | |
| 11 animation-duration: 2e10s; | |
| 12 animation-delay: -1e10s; | |
| 13 animation-fill-mode: forwards; | |
| 14 } | |
| 15 @keyframes test{ | |
| 16 0%{ | |
| 17 transform: skew(0deg, 0deg); | |
| 18 } | |
| 19 100%{ | |
| 20 transform: skew(-45deg, 45deg); | |
| 21 } | |
| 22 } | |
| 23 </style> | |
| 24 <div></div> | |
|
alancutter (OOO until 2018)
2015/09/03 01:15:34
For test readability you should have a red expecte
nainar1
2015/09/03 04:07:29
Done.
| |
| OLD | NEW |