CSS ์ ๋๋ฉ์ด์ : 3D ๋ฐ์ค ์ ๋๋ฉ์ด์
์ค๋์ ์์ง์ด๋ฉด์ ํฌ๊ธฐ๊ฐ ๋ณํ๋๋ 3D ๋ฐ์ค๋ฅผ ๋ง๋ค์ด ๋ณด๊ฒ ์ต๋๋ค. ์์ ํด๋ณผ ์ ๋๋ฉ์ด์ ์ ๋ค์๊ณผ ๊ฐ์ต๋๋ค.
See the Pen Untitled by mj0614k (@mj0614k) on CodePen.
1. HTML ์์ค
<div class="cube">
<div>์๋ฆ</div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
cube class๋ฅผ ๊ฐ์ง div ๋ฐ์ค๋ฅผ ํ๋ ๋ง๋ค์ด ์ฃผ๊ณ , ๊ทธ ์์ div ๋ฐ์ค 6๊ฐ๋ฅผ ์์ ํด ์ค๋๋ค. div ๋ฐ์ค 6๊ฐ๋ ์ ์ก๋ฉด์ฒด์ ๊ฐ๊ฐ์ ๋ฉด์ ๋๋ค. ์ํ๋ ๋ฌธ๊ตฌ๋ฅผ ์์ฑํ๋ฉด ๋ฉ๋๋ค.
2. CSS ์์ค
body {
background-color: lavender;
height: 100vh;
perspective: 1000px;
display: flex;
align-items: center;
justify-content: center;
}
.cube {
position: relative;
width: 100px;
height: 100px;
transform-style: preserve-3d;
transform: rotatex(-20deg) rotatey(-140deg) translatez(0);
animation: rotate 8000ms linear infinite;
}
.cube div {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
top: 0;
left: 0;
width: 100px;
height: 100px;
opacity: 0.75;
color: #fff;
}
.cube div:nth-child(1) {
background-color: #ffcc80;
transform-origin: center top;
transform: rotatex(90deg) translatey(-100px);
animation: top 4000ms ease-in-out 8000ms infinite;
}
.cube div:nth-child(2) {
background-color: #ffb74d;
transform-origin: center bottom;
transform: rotatex(-90deg) translatey(100px);
animation: bottom 4000ms ease-in-out 8000ms infinite;
}
.cube div:nth-child(3) {
background-color: #ffa726;
transform-origin: left center;
transform: rotatey(-90deg) translatex(-100px);
animation: left 4000ms ease-in-out 8000ms infinite;
}
.cube div:nth-child(4) {
background-color: #ff9800;
transform-origin: right center;
transform: rotatey(90deg) translatex(100px);
animation: right 4000ms ease-in-out 8000ms infinite;
}
.cube div:nth-child(5) {
background-color: #fb8c00;
transform-origin: center center;
transform: rotatex(0deg);
animation: front 4000ms ease-in-out 8000ms infinite;
}
.cube div:nth-child(6) {
background-color: #ffb74d;
transform-origin: center center;
transform: rotatey(180deg) translatez(100px);
animation: back 4000ms ease-in-out 8000ms infinite;
}
@keyframes rotate {
0% {transform: rotatex(0) rotatey(0) rotatez(0) translatez(0)}
100% {transform: rotatex(360deg) rotatey(360deg) rotatez(360deg) translatez(0)}
}
@keyframes top {
0% {transform: rotatex(90deg) translatey(-100px) translatez(0)}
50% {transform: rotatex(90deg) translatey(-100px) translatez(100px)}
100% {transform: rotatex(90deg) translatey(-100px) translatez(0)}
}
@keyframes bottom {
0% {transform: rotatex(-90deg) translatey(100px) translatez(0)}
50% {transform: rotatex(-90deg) translatey(100px) translatez(100px)}
100% {transform: rotatex(-90deg) translatey(100px) translatez(0)}
}
@keyframes right {
0% {transform: rotatey(90deg) translatex(100px) scaley(1)}
50% {transform: rotatey(90deg) translatex(100px) scaley(3)}
100% {transform: rotatey(90deg) translatex(100px) scaley(1)}
}
@keyframes left {
0% {transform: rotatey(-90deg) translatex(-100px) scaley(1)}
50% {transform: rotatey(-90deg) translatex(-100px) scaley(3)}
100% {transform: rotatey(-90deg) translatex(-100px) scaley(1)}
}
@keyframes front {
0% {transform: rotatex(0deg) scaley(1)}
50% {transform: rotatex(0deg) scaley(3)}
100% {transform: rotatex(0deg) scaley(1)}
}
@keyframes back {
0% {transform: rotatex(180deg) translatez(100px) scaley(1)}
50% {transform: rotatex(180deg) translatez(100px) scaley(3)}
100% {transform: rotatex(180deg) translatez(100px) scaley(1)}
}
์ ๋ ์ด๊ฒ์ ์ดํดํ ๋งํผ ์์ง ์ฑ์ฅํ์ง ๋ชปํ์ต๋๋ค... ์ค๋ช ๋ ๋ชป ํด...
์๋ฌดํผ ์์ HTML, CSS ์์ค๋ฅผ ํฉ์น๋ฉด ์ ๋๋ฉ์ด์ ์ด ์์ฑ๋ฉ๋๋ค.
'CSS' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
CSS ์ ๋๋ฉ์ด์ ๋ง๋ค๊ธฐ : ๋ง์ฐ์ค๋ฅผ ๋ฐ๋ผ๊ฐ๋ ๋์ (13) | 2022.09.26 |
---|---|
CSS ์ ๋๋ฉ์ด์ ๋ง๋ค๊ธฐ : ๋ก๋ฉ ์ ๋๋ฉ์ด์ (6) | 2022.09.24 |
CSS ์ ๋๋ฉ์ด์ ๋ง๋ค๊ธฐ : ํตํต ํ๋ ๊ธ์ (1) | 2022.09.22 |
CSS ์ ๋๋ฉ์ด์ ๋ง๋ค๊ธฐ : ์นด๋ ๋ค์ง๊ธฐ (9) | 2022.09.20 |
CSS ์ ๋๋ฉ์ด์ ๋ง๋ค๊ธฐ : ์ผ๋ ์ด๋ ์ ๋๋ฉ์ด์ (8) | 2022.09.19 |
๋๊ธ