비전공자 개발일기

Card Animation 본문

HTML _CSS

Card Animation

HiroDaegu 2022. 4. 15. 00:35
728x90
SMALL
<div class="card">K</div>
* {
  margin: 100px auto;
}

.card {
  background: #5ce1e6;
  font-size: 50px;
  width: 100px;
  height: 100px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 7px 0 rgb(211,247,248), 0 6px 15px 0 rgb(189, 243, 245);
  animation: rotate 5s cubic-bezier(.54, .13, .30, .87)
}
@keyframes rotate {
  0% {transform: rotateY(0turn)}
  100% {transform: rotateY(10turn)}
}

 

 

728x90
LIST

'HTML _CSS' 카테고리의 다른 글

TEXT OVERFLOW & LOADING ANIMATION  (0) 2022.04.17
filter() Animation  (0) 2022.04.16
Button Purse AniMation  (0) 2022.04.14
Bell Animation  (0) 2022.04.13
Loading Animation  (0) 2022.04.12