CSS3的transition属性的动画

#div6{background-color:#CC9966;height:155px;width:155px;-webkit-transition:rotateY2se... #div6{
background-color:#CC9966;
height:155px;
width:155px;
-webkit-transition:rotateY 2s ease 3s,background-color 2s ease
}
#div6:hover{
-webkit-transform:rotateY(55deg);
background-color:#FF0033
}
=========================想让它先做rotateY的动画2秒完成,然后间隔3秒,再做背景颜色的动画,但这个却反应,错在哪了。
展开
 我来答
a15968855165
推荐于2016-02-08 · 超过34用户采纳过TA的回答
知道答主
回答量:134
采纳率:0%
帮助的人:71.7万
展开全部
#div6{
background-color:#CC9966;
height:155px;
width:155px;
-webkit-transition:transform 2s ease 0s,background-color 2s ease 3s
}
#div6:hover{
-webkit-transform:rotateY(55deg);
background-color:#FF0033
}

这样看下

可靠的小巴
2014-12-17 · TA获得超过280个赞
知道小有建树答主
回答量:203
采纳率:66%
帮助的人:95.7万
展开全部
#div61{
background-color:#CC9966;
height:155px;
width:155px;
animation:dong 7s ease-in-out 0s 1 normal;
-moz-animation:dong 7s ease-in-out 0s 1 normal;
-webkit-animation:dong 7s ease-in-out 0s 1 normal;
-o-animation:dong 7s ease-in-out 0s 1 normal;
}
@keyframes dong{
0%{
transform:rotateX(0deg);
}
30%{
transform:rotateX(120deg);
}
70%{
background-color:#CC9966;
transform:rotateX(120deg);
}
100%{
background-color:red;
transform:rotateX(120deg);
}
}
你用火狐 或则 360 看下
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式