Skip to content

Instantly share code, notes, and snippets.

@a24o92
Created February 11, 2018 13:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save a24o92/5552aa495c6a74162a012a8715855809 to your computer and use it in GitHub Desktop.
Save a24o92/5552aa495c6a74162a012a8715855809 to your computer and use it in GitHub Desktop.
/*********************************
画像をビヨンビヨン
*********************************/
#biyon-tate{
margin-top:200px;
-webkit-animation-name:biyon-tate;
-webkit-animation-property:-webkit-transform;
-webkit-animation-duration:500ms;
-webkit-animation-timing-function:ease-out;
-webkit-animation-iteration-count:infinite;
-webkit-transform-origin:center bottom;
}
@-webkit-keyframes biyon-tate{
0%{
}
25%{
-webkit-transform:scale(.8,1.6);
}
100%{
-webkit-transform:scaleX(1.2,.5);
}
}
#biyon-yoko{
margin-top:;
-webkit-animation-name:biyon-yoko;
-webkit-animation-property:-webkit-transform;
-webkit-animation-duration:500ms;
-webkit-animation-timing-function:ease-out;
-webkit-animation-iteration-count:infinite;
-webkit-transform-origin:center bottom;
}
@-webkit-keyframes biyon-yoko{
0%{
}
25%{
-webkit-transform:scale(1.6,.8);
}
100%{
-webkit-transform:scaleX(1.2,.5);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment