728x90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="bar">1</div>
<script src="app.js"></script>
</body>
</html>
body{
margin: 0;
height: 100vh;
}
.bar{
width: 50px;
background-color: aqua;
animation: grow 1s linear .5s forwards;
position: absolute; bottom: 0;
}
@keyframes grow{
from{
height: 0;
}
to{
height: 100%;
}
}
728x90
'프론트엔드 > 컴포넌트' 카테고리의 다른 글
드롭다운 메뉴 (0) | 2024.05.31 |
---|---|
슬라이드 넘길때 텍스트 애니메이션 적용하기 (0) | 2024.02.24 |
돋보기 효과 (0) | 2024.02.14 |
입력창에서 숫자만 입력 가능하게 하기 (36) | 2023.08.24 |
말풍선 툴팁 & 드롭다운 메뉴 만들기 (0) | 2023.07.29 |