CSS3动画中怎么一边移动一边旋转?

我是新手。。。求教不用hover为什么我的只能移动不能旋转*{padding:0;margin:0;}#container1{width:800px;height:700... 我是新手。。。求教不用hover为什么我的只能移动不能旋转

*{
padding:0;
margin:0;
}
#container1
{
width:800px;
height:700px;
}
#showing1
{
width:200px;
height:150px;
float:right;
position:relative;
top:550px;
background:#F36;
border-radius:10px;
transition:all 5s ease-in-out;
transform:rotate(720deg) scale(2,2);
animation:mylasting1;
animation-delay:2s;
animation-duration:5s;
animation-play-state:running;
animation-fill-mode:forwards;
/* Safari and Chrome: */
-webkit-border-radius:10px;
-webkit-transition:all 5s ease-in-out
-webkit-transform:rotate(720deg) scale(2,2);
-webkit-animation:mylasting1;
-webkit-animation-delay:2s;
-webkit-animation-duration:5s;
-webkit-animation-play-state:running;
-webkit-animation-fill-mode:forwards;
}
@keyframes mylasting1
{
0%{top:550px;}
25%{top:250px;left:100px;}
50%{top:150px;left:50px;}
100%{top:0px;left:0px;}
}
@-webkit-keyframes mylasting1
{
0%{top:550px;}
25%{top:250px;left:100px;}
50%{top:150px;left:50px;}
100%{top:0px;left:0px;}
}

<div id="container1">
<div id="showing1">
</div>
</div>
展开
 我来答
jack观天下
推荐于2017-09-19 · 带你看天下趣闻,有意思的视频!
jack观天下
采纳数:832 获赞数:3143

向TA提问 私信TA
展开全部

你的代码里面只有位置移动的top,left。没有写旋转的代码。

在动画帧时加入rotate(角度)就可以旋转并移动,可以参考下面代码。

相关示例如下:

<style>
.ani{animation:box 1s linear 0s infinite;width:100px;height:100px;background:green;border-radius:50%;}
@keyframes box{0%   {transform:rotate(0deg)translate(0,0);}25%{transform:rotate(90deg)}50%{transform:rotate(180deg)translate(-300px,0);}75%{transform:rotate(270deg);}100% {transform:rotate(360deg)translate(0,0);}}
</style>
<div class="ani"></div>


CSS(层叠样式表)级联样式表是一种用来表现HTML(标准通用标记语言的一个应用)或XML(标准通用标记语言的一个子集)等文件样式的计算机语言。

做个自由人fly
2013-11-22 · TA获得超过191个赞
知道答主
回答量:60
采纳率:0%
帮助的人:29.4万
展开全部
你在这里面也没设置让他旋转的代码,肯定不会旋转的
就是这句:-webkit-transform:rotate(720deg) scale(2,2);
@keyframes mylasting1
{
0%{top:550px; -webkit-transform:rotate(10deg) scale(2,2); transform:rotate(720deg) scale(2,2);}
25%{top:250px;left:100px; -webkit-transform:rotate(80deg) scale(2,2); transform:rotate(720deg) scale(2,2);}
50%{top:150px;left:50px; -webkit-transform:rotate(160deg) scale(2,2); transform:rotate(720deg) scale(2,2);}
100%{top:0px;left:0px; -webkit-transform:rotate(320deg) scale(2,2); transform:rotate(720deg) scale(2,2);}
}
@-webkit-keyframes mylasting1
{
0%{top:550px; -webkit-transform:rotate(10deg) scale(2,2);}
25%{top:250px;left:100px; -webkit-transform:rotate(80deg) scale(2,2);}
50%{top:150px;left:50px; -webkit-transform:rotate(160deg) scale(2,2);}
100%{top:0px;left:0px; -webkit-transform:rotate(320deg) scale(2,2);}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
地在子0L
2018-06-08
知道答主
回答量:1
采纳率:0%
帮助的人:864
展开全部
@keyframes mylasting1
{
0%{top:550px;}
25%{top:250px;left:100px;}
50%{top:150px;left:50px;}
100%{top:0px;left:0px;transform:rotate(720deg) scale(2,2);}

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式