โญ๏ธ ์ ๋๋ฉ์ด์ ํจ๊ณผ : ํ ์คํธ ํจ๊ณผ โญ๏ธ
01. ์ ๋๋ฉ์ด์ ํจ๊ณผ
์ ๋๋ฉ์ด์
(Animation) ํจ๊ณผ๋ HTML ์์์ ์ ์ฉ๋๋ CSS ์คํ์ผ์ ๋ค๋ฅธ CSS ์คํ์ผ๋ก ๋ถ๋๋ฝ๊ฒ ๋ณํ์ํต๋๋ค.
์ ๋๋ฉ์ด์
์ ์ ๋๋ฉ์ด์
์ ๋ํ๋ด๋ CSS ์คํ์ผ๊ณผ ์ ๋๋ฉ์ด์
์ ์ฐ์๋ ์ฅ๋ฉด(sequence)๋ฅผ ๋ํ๋ด๋ ๋ณต์์ ํคํ๋ ์(@keyframes)๋ค๋ก ์ด๋ฃจ์ด์ง๋๋ค.
___ ์ฐธ๊ณ ํ๊ธฐ ___
`1 @keyframes : CSS ์ ๋๋ฉ์ด์
์์ ๊ตฌ๊ฐ์ ์ ํ๊ณ ๊ฐ ๊ตฌ๊ฐ๋ณ๋ก ์ด๋ค ์คํ์ผ์ ์ ์ฉ์ํฌ์ง ์ ํฉ๋๋ค.
02. ๋์ ๋๋ ํ ์คํธ ํจ๊ณผ ๋ง๋ค๊ธฐ
[1] < div > ๋ฐ์ค ๋ง๋ค๊ธฐ
svg ํ๊ทธ๋ฅผ ๋ง๋ค์ด ์ค๋๋ค.
<svg viewBox="0 0 1320 300"> <text x="50%" y="50%" dy="40px" text-anchor="middle">oranssy</text> </svg>
[2] CSS ์ค์ ํ๊ธฐ
@keyframes ์ ์ด์ฉํ์ฌ ์ ๋๋ฉ์ด์ ์ ์์ง์์ ์กฐ์ ํฉ๋๋ค.
@font-face { font-family: 'VitroCore'; font-weight: normal; font-style: normal; src: url('https://cdn.jsdelivr.net/gh/webfontworld/vitro/VitroCore.eot'); src: url('https://cdn.jsdelivr.net/gh/webfontworld/vitro/VitroCore.eot?#iefix') format('embedded-opentype'), url('https://cdn.jsdelivr.net/gh/webfontworld/vitro/VitroCore.woff2') format('woff2'), url('https://cdn.jsdelivr.net/gh/webfontworld/vitro/VitroCore.woff') format('woff'), url('https://cdn.jsdelivr.net/gh/webfontworld/vitro/VitroCore.ttf') format("truetype"); font-display: swap; } body { background-color: #FFFFE0; } svg { font-family: 'VitroCore'; font-size: 140px; position: absolute; width: 100%; height: 100%; text-transform: uppercase; animation: stroke 5s 1 alternate; fill: rgba(72,138,204,1); } @keyframes stroke { 0% { stroke-dashoffset: 25%; stroke-dasharray: 0 50%; fill: rgba(72,138,204,0); stroke: rgba(54,95,160,1); stroke-width: 2; } 70% { fill: rgba(72,138,204,0); stroke: rgba(54,95,160,1); } 80% { fill: rgba(72,138,204,0); stroke: rgba(54,95,160,1); } 100% { stroke-dashoffset: -25%; stroke-dasharray: 50% 0; fill: rgba(72,138,204,1); stroke: rgba(54,95,160,0); stroke-width: 0; } }
๊ฒฐ๊ณผ๋ณด๊ธฐ
'CSS > Animation' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
๊ฑธ์ด๊ฐ์ (3) | 2022.09.08 |
---|---|
CSS animation (3) | 2022.09.08 |
SVG animation (5) | 2022.09.08 |
์ ๋๋ฉ์ด์ ํจ๊ณผ _ ๋ฌดํ๋ ๊ณต (5) | 2022.09.05 |
์ ๋๋ฉ์ด์ ๋น๊ธ๋น๊ธ (5) | 2022.08.29 |
๋๊ธ