|
|

楼主 |
发表于 2022-2-19 20:41
|
显示全部楼层
代码:
<style>
#fshan {
position: relative;
width: 110px;
height: 110px;
border:10px solid darkgreen;
border-radius: 50%;
background: transparent;
}
#fshan::before, #fshan::after {
content: "";
position: absolute;
background: green;
animation: zhuan .2s linear infinite;
}
#fshan::before {
left: 50px;
top: 5px;
width: 10px;
height: 100px;
}
#fshan::after {
width: 100px;
height: 10px;
left: 5px;
top: 50px;
}
@keyframes zhuan {
to { transform: rotate(360deg); }
}
</style>
<div id="fshan"></div>
|
评分
-
| 参与人数 1 | 威望 +50 |
金钱 +100 |
经验 +50 |
收起
理由
|
红影
| + 50 |
+ 100 |
+ 50 |
赞一个! |
查看全部评分
|