๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ
CSS/Animation

ํ…์ŠคํŠธ ํšจ๊ณผ ์• ๋‹ˆ๋ฉ”์ด์…˜

by oranssy 2022. 9. 8.
728x90
๋ฐ˜์‘ํ˜•

โญ๏ธ ์• ๋‹ˆ๋ฉ”์ด์…˜ ํšจ๊ณผ : ํ…์ŠคํŠธ ํšจ๊ณผ โญ๏ธ


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;
}
}

๊ฒฐ๊ณผ๋ณด๊ธฐ

728x90
๋ฐ˜์‘ํ˜•

'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