본문 바로가기
퍼블리싱

[Css 활용] 말풍선 위 아래로 움직이는 효과, 키프레임

by lionbum 2023. 8. 1.

 

 

 

주 사용 CSS 

- animation 
- keyframe 

+ animation-timing-function 
+ flex - 정가운데 배치 

 

 

Html

<body>
	<div class="wrap">
  <img src="https://blog.kakaocdn.net/dn/L6KJ7/btskiAnNrQN/6kUJKntEFuKZyHBXgxZzBK/img.png" class="moving">
	</div>
</body>

 

Css 

.wrap {
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
}
.moving {
  animation: move 0.7s ease-in 0s infinite alternate; 
  margin-top: 0;
  width:80px
}
        
@keyframes move {
	0% {margin-top: 0px;}
	100% {margin-top: 10px;}
}

 

Result 

 

*result 클릭해 주세요. 

 

 

 

 

 

 

 

728x90
반응형

댓글