CSS 애니메이션으로 회전
CSS를 사용하여 사각형 회전
CSS 애니메이션 3d로 회전해 보세요.
이해하기 쉽게 나도 문자열을 그려 보았다.
<div id="base">
<div id="rectangle">矩形を描いてみる</div>
</div>
#rectangle {
width: 500px;
height: 300px;
font-size: 5em;
border-style: solid;
border-width: 10px;
border-color: #000000;
background-color: #0000ff;
/* 以下がアニメーション*/
animation-duration: 10s;
animation-name: anim;
}
@keyframes anim {
0% {
transform: rotate3d(0, 0, 0, 0deg);
}
100% {
transform: rotate3d(1, 0, 1, 300deg);
}
}
로테이트 대단하다.rotate3d를 사용하여 x축, y축, z축의 값을 지정합니다.
rotate3d(x, y, z, 回転する角度)
그렇죠.이때 x축과 z축을 회전시킵니다.
Reference
이 문제에 관하여(CSS 애니메이션으로 회전), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/sassy/articles/2c972cb03b353e51066d텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)