HTML 좌우 움직임

Posted by PeEn
2019. 10. 31. 11:41 Programing/Web Programming
<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<style>
    div {
        width: 100px;
        height: 100px;
        background: red;
        position:relative;
        animation: 2s myanim;  
        animation-iteration-count: 10
		}
		
@keyframes myanim
        {
            0%   {left:0px; top:0px;}
            25%  {left:100px; top:0px;}
            50%  {left:200px; top:0px;}
            75%  {left:100px; top:0px;}
            100% {left:0px; top:0px;}
       }
	</style>
</head>
	
<body>
<div></div>
</body>
</html>

'Programing > Web Programming' 카테고리의 다른 글

CSS 기울기 색 변형효과 transform, 레이아웃 설정  (0) 2019.11.05
HTML 공 튕기기  (0) 2019.10.31
HTML 기울기  (0) 2019.10.31
HTML 마우스 올리면 사이즈 조절  (0) 2019.10.31
HTML 투명도  (0) 2019.10.31