gpt4 book ai didi

css - 如何让一个圆圈同时移动和旋转?

转载 作者:太空宇宙 更新时间:2023-11-03 21:07:04 24 4
gpt4 key购买 nike

基本上,圆圈像轮胎一样从左向右旋转。我尝试应用 transform rotate 360​​ 但它不起作用。

html:

 <div class="circle"></div>

CSS:

 .circle{
height: 100px;
width: 100px;
background-color: green;
border-radius: 10px;
-webkit-animation:movespin 4s ease-in-out;
animation:movespin 4s ease-in-out;
}

@-webkit-keyframes movespin {
0% {
transform: translateX(0px);
transform:rotate(360deg);
}
100% {
transform: translateX(900px);
transform:rotate(360deg);
}
}

最佳答案

把它们放在一起。

.circle {
height: 100px;
width: 100px;
background-color: green;
border-radius: 10px;
-webkit-animation: movespin 4s ease-in-out;
animation: movespin 4s ease-in-out;
}

@-webkit-keyframes movespin {
0% {
transform: translateX(0px) rotate(0deg);
}
100% {
transform: translateX(900px) rotate(360deg);
}
}
<div class="circle"></div>

关于css - 如何让一个圆圈同时移动和旋转?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51624932/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com