HTML 공 튕기기
2019. 10. 31. 11:46
Programing/Web Programming
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
@keyframes bounce
{
from, to{
bottom:0px;
animation-timing-function:ease-out;
}
50%{
bottom:200px;
animation-timing-function:ease-in;
}
}
#ball{
position: absolute;
width:20px;
height:20px;
background:red;
border-radius:10px;
animation-name: bounce;
animation-iteration-count: infinite;
animation-duration: 5s;
}
</style>
</head>
<body>
<div id="ball"></div>
</body>
</html>
'Programing > Web Programming' 카테고리의 다른 글
CSS 애니메이션 기울기, 비율, 이동 (0) | 2019.11.07 |
---|---|
CSS 기울기 색 변형효과 transform, 레이아웃 설정 (0) | 2019.11.05 |
HTML 좌우 움직임 (0) | 2019.10.31 |
HTML 기울기 (0) | 2019.10.31 |
HTML 마우스 올리면 사이즈 조절 (0) | 2019.10.31 |