您的位置:首页 > Web前端 > CSS

css3图片飞走动画特效

2017-08-10 16:24 381 查看
.kidfly_animation{
position:relative;
animation:myfirst 5s;
-moz-animation:myfirst 5s; /* Firefox */
-webkit-animation:myfirst 5s; /* Safari and Chrome */
-o-animation:myfirst 5s; /* Opera */
}
@keyframes myfirst
{
50%  {left:3rem; bottom:1rem;}   /* 定位飞走的位置 */
100% {left:-1rem; bottom:3rem;}  /* 定位飞走的位置 */
}

@-moz-keyframes myfirst Firefox
{
50%  {left:3rem; bottom:1rem;}
100% {left:-1rem; bottom:3rem;}
}

@-webkit-keyframes myfirst Safari and Chrome
{
50%  {left:3rem; bottom:1rem;}
100% {left:-1rem; bottom:3rem;}
}

@-o-keyframes myfirst Opera
{
50%  {left:3rem; bottom:1rem;}
100% {left:-1rem; bottom:3rem;}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息