Guest User

Untitled

a guest
May 28th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. // これはOK
  2. .amp-animate .box {
  3. transform: rotate(180deg);
  4. transition: transform 2s;
  5. }
  6.  
  7. // これはNG
  8. .amp-animate .box {
  9. color: red; // non-animation property not allowed in animation selector
  10. transform: rotate(180deg);
  11. transition: transform 2s;
  12. }
Add Comment
Please, Sign In to add comment