250x250
Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | 30 |
Tags
- Animation
- 백엔드
- button
- php
- react
- html5
- jQuery
- 비전공자
- hover
- 자바스크립트
- iOS 개발자
- ipad
- 비전공 개발자
- MAC
- 개발자
- front-end
- SWIFT
- 프론트엔드
- image
- xcode
- HTML
- keyframes
- 애니메이션
- IOS
- 풀스택
- iPhone
- effect
- css3
- CSS
- javascript
Archives
- Today
- Total
비전공자 개발일기
Card Animation 본문
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 |