gpt4 book ai didi

javascript - 用css3绕中心旋转

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

事实上,我想出于教育目的制作太阳系!所以一个大的黄色圆圈应该在中间,其他人应该旋转!但我不知道!只要帮忙旋转东西,我就会发现其他东西!我找到下面的代码,但它只是围绕着他自己旋转!

div {
margin: 20px;
width: 100px;
height: 100px;
background: #f00;
-webkit-animation-name: spin;
-webkit-animation-duration: 4000ms;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-name: spin;
-moz-animation-duration: 4000ms;
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-ms-animation-name: spin;
-ms-animation-duration: 4000ms;
-ms-animation-iteration-count: infinite;
-ms-animation-timing-function: linear;

animation-name: spin;
animation-duration: 4000ms;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@-ms-keyframes spin {
from { -ms-transform: rotate(0deg); }
to { -ms-transform: rotate(360deg); }
}
@-moz-keyframes spin {
from { -moz-transform: rotate(0deg); }
to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
from { -webkit-transform: rotate(0deg); }
to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
from {
transform:rotate(0deg);
}
to {
transform:rotate(360deg);
}
}

现场演示:http://jsfiddle.net/hamidrezabstn/bLqak/

最佳答案

使用CSS3的太阳系引用本教程/示例:

CSS3 Solar System

关于javascript - 用css3绕中心旋转,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18309041/

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