CSS(円に沿った文字を動かす方法)
<style>
#box1{
animation:6s linear infinite rotation1;
}
@keyframes rotation1{
0%{ transform:rotate(0);}
100%{ transform:rotate(360deg); }
}
</style>
スポンサーリンク
スポンサーリンク