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 | 31 |
Tags
- MAC
- CSS
- iPhone
- css3
- javascript
- front-end
- php
- 자바스크립트
- 풀스택
- 비전공자
- hover
- iOS 개발자
- image
- SWIFT
- 비전공 개발자
- button
- react
- effect
- IOS
- ipad
- 백엔드
- Animation
- 프론트엔드
- html5
- xcode
- 개발자
- keyframes
- jQuery
- 애니메이션
- HTML
Archives
- Today
- Total
비전공자 개발일기
Loading Animation 본문
728x90
SMALL
<div class="loader-wrapper">
<div class="loader">
<div class="loader loader-inner"></div>
</div>
</div>
.loader-wrapper {
width: 60px;
height:60px;
}
.loader {
box-sizing: border-box;
width: 100%;
height: 100%;
border: 10px solid #162534;
border-top-color: #4bc8eb;
border-bottom-color: #f13a8f;
border-radius: 50%;
animation: rotate 5s linear infinite;
}
.loader-inner {
border-top-color: #36f372;
border-bottom-color: #fff;
animation-duration: 2.5s;
}
@keyframes rotate {
0%{
transform: scale(1) rotate(360deg);
}
50% {
transform: scale(.8) rotate(-360deg);
}
100% {
transform: scale(1) rotate(360deg);
}
}
728x90
LIST
'HTML _CSS' 카테고리의 다른 글
Button Purse AniMation (0) | 2022.04.14 |
---|---|
Bell Animation (0) | 2022.04.13 |
New HTML5 Tags with no CSS & JS (0) | 2022.01.17 |
HTML CSS - Dropdown menu Hover (0) | 2021.10.16 |
HTML & CSS -Publishing2 (0) | 2021.10.08 |