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