为了账号安全,请及时绑定邮箱和手机立即绑定

小白求助,为什么不用hover,我的就只能移动不能旋转?

小白求助,为什么不用hover,我的就只能移动不能旋转?

qq_花开花谢_0 2022-07-07 16:07:05
*{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>
查看完整描述

3 回答

?
慕尼黑8549860

TA贡献1818条经验 获得超11个赞

你的代码里面只有位置移动的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(标准通用标记语言的一个子集)等文件样式的计算机语言。


查看完整回答
反对 回复 2022-07-11
?
LEATH

TA贡献1936条经验 获得超6个赞

你在这里面也没设置让他旋转的代码,肯定不会旋转的
就是这句:-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);}
}


查看完整回答
反对 回复 2022-07-11
?
胡说叔叔

TA贡献1804条经验 获得超8个赞

@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);}

}

查看完整回答
反对 回复 2022-07-11
  • 3 回答
  • 0 关注
  • 132 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信