css keyframes์ ์ด์ฉํ ์ค์ด๋๋ progressbar
ยท
html, css
css๋ฅผ ์ด์ฉํ progressbar ํคํ๋ ์ ์ ๋๋ฉ์ด์
์ ์ด์ฉํ์ฌ ๊ธธ์ด์์ฑ์ผ๋ก css ํจ๊ณผ๋ฅผ ์ค๋ค. ๊ฒ์ ๋ฐํ์ด ์ ์ฒด์ด๋ฉฐ ๋ถ์ ์์ด ์๊ฐ์ ๋ฐ๋ผ ์ ๋๋ฉ์ด์
ํจ๊ณผ๋ก ์ค์ด๋ ๋ค. HTML CSS .progress { position: absolute; bottom: 0; left: 0; z-index: 1; width: 100%; height: 80px; background-color: #000; } .progress .bar { position: absolute; top: 2px; left: 2px; width: calc(100% - 4px); height: calc(100% - 4px); background-color: #ff0b7b; transform-origin: left; animation: scal..