๋ฐ์ํ
ํตํต ํ๋ ๊ธ์ ํจ๊ณผ๐ฐ
์ด๋ฒ ํฌ์คํ ์์๋ ํตํต ํ๋ ๊ธ์ ํจ๊ณผ๋ฅผ ๋ง๋ค์ด๋ณด๋๋ก ํ๊ฒ ์ต๋๋ค!
HTML ์ฝ๋
h1 ํ๊ทธ ์์ ์ฐ๊ณ ์ถ์ ๊ธ์ ์๋งํผ์ span ํ๊ทธ๋ฅผ ๋ง๋ ๋ค์ ๊ธ์๋ฅผ ์ฑ์ ๋ฃ๋๋ค.
<h1>
<span>์ฝ</span>
<span>๋ฉ</span>
<span>๊ณต</span>
<span>์ฑ
</span>
<span>โ
</span>
<span>ํฐ</span>
<span>์ค</span>
<span>ํ </span>
<span>๋ฆฌ</span>
</h1>
CSS ์ฝ๋
@import url('https://webfontworld.github.io/crown/CrownMychew.css');
html, body {
width: 100%;
height: 100%;
background: linear-gradient(140deg, skyblue 0%, plum 100%);
display: flex;
justify-content: center;
align-items: center;
}
h1 {
height: 100px;
}
h1 span {
font-family: 'CrownMychew';
font-size: 110px;
color: #fff;
position: relative;
top: 20px;
display: inline-block;
-webkit-font-smoothing: antialiased;
text-shadow:0 1px 0 #ccc,
0 2px 0 #ccc,
0 3px 0 #ccc,
0 4px 0 #ccc,
0 5px 0 #ccc,
0 6px 0 transparent,
0 7px 0 transparent,
0 8px 0 transparent,
0 9px 0 transparent,
0 10px 0 rgba(0,0,0,0.4);
animation: bounce 0.3s ease infinite alternate;
}
h1 span:nth-child(2) {animation-delay:0.1s;}
h1 span:nth-child(3) {animation-delay:0.2s;}
h1 span:nth-child(4) {animation-delay:0.3s;}
h1 span:nth-child(5) {animation-delay:0.4s;}
h1 span:nth-child(6) {animation-delay:0.5s;}
h1 span:nth-child(7) {animation-delay:0.6s;}
h1 span:nth-child(8) {animation-delay:0.7s;}
h1 span:nth-child(9) {animation-delay:0.8s;}
@keyframes bounce {
100% {
top: -20px;
text-shadow:0 1px 0 #ccc,
0 2px 0 #ccc,
0 3px 0 #ccc,
0 4px 0 #ccc,
0 5px 0 #ccc,
0 6px 0 transparent,
0 7px 0 transparent,
0 8px 0 transparent,
0 9px 0 transparent,
0 50px 25px rgba(0,0,0,0.4);
}
}
๊ฒฐ๊ณผ๋ฌผ
๊ธ์๊ฐ ์ด๋ ๊ฒ ํตํต ํ๋ค๋ฉด ์ฑ๊ณต์ ๋๋ค๐ฐ๐ฐ
๋ฐ์ํ
'CSS' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[CSS] ๋ก๋ฉ ์ ๋๋ฉ์ด์ ๋ง๋ค๊ธฐ (6) | 2022.09.25 |
---|---|
[CSS] ์์ง์ด๋ ์ก๋ฉด์ฒด ์ ๋๋ฉ์ด์ ๐ฒ (11) | 2022.09.22 |
[CSS] ๋ง์ฐ์ค ์ค๋ฒ ํจ๊ณผ(Mouse Hover Effect) (4) | 2022.09.20 |
[CSS] SCSS๋ก ์จ์ด๋ธ ์ ๋๋ฉ์ด์ ๋ง๋ค๊ธฐ๐ (8) | 2022.09.19 |
[CSS] ๊ฑท๋ ํธ๋ฐ ์ ๋๋ฉ์ด์ ๋ง๋ค๊ธฐ๐ (8) | 2022.09.08 |
๋๊ธ