LoginSignup
1
1

More than 5 years have passed since last update.

css Animation

Last updated at Posted at 2014-11-29
    .on{-webkit-animation: move 2s linear;}

@-webkit-keyframes move{
0%{
-webkit-transform:translate(0px,0);
}
100%{
-webkit-transform:translate(200px,0);
}
}

0%から100%になるが、変化させたいプロパティを一括指定
-webkit-transition-property: -webkit-transform,width,border-radius,margin;

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1