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 |
Tags
- image
- css3
- html5
- HTML
- 비전공 개발자
- 애니메이션
- hover
- SWIFT
- xcode
- iPhone
- javascript
- 비전공자
- 백엔드
- CSS
- keyframes
- jQuery
- Animation
- IOS
- MAC
- 풀스택
- effect
- front-end
- iOS 개발자
- react
- php
- 개발자
- ipad
- 자바스크립트
- button
- 프론트엔드
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 |