이 포스트는 Udemy 20 Web Projects With Vanila Javascript 보고 정리하는 내용입니다
https://www.udemy.com/course/web-projects-with-vanilla-javascript/
/* progress */
.progress-container {
background: #fff;
height: 4px;
width: 100%;
border-radius: 5px;
margin: 10px 0;
cursor: pointer;
}
.progress {
background: #fe8daa;
border-radius: 5px;
height: 100%;
width: 0%;
transition: width 0.1s linear;
}
container에
height:4px
width:100%
progress에는
height:100%주고
width:0% (나중에 javascript로 % 늘려줄 것임)
근데 자연스럽게 하려고
transition: width 0.1s linear 준다.
'Mini Projects' 카테고리의 다른 글
Infinite Scroll (2) Get initial Posts from API (0) | 2020.07.29 |
---|---|
Infinite Scroll (1) Loader with HTML and CSS (bounce animation) (0) | 2020.07.28 |
Custom Music Player (4) music-info (transition 여러개) (0) | 2020.07.27 |
Custom Music Player (3) CSS 이미지 위치, rotate (0) | 2020.07.27 |
Custom Music Player (2) CSS 배경색 그라디에이션 (0) | 2020.07.27 |