A Pen by Kevin Jannis on CodePen.
Created
July 9, 2018 06:10
-
-
Save adwait-thattey/2fd1532ac65bec17a18a0710b428d00c to your computer and use it in GitHub Desktop.
Vivid CSS3 Spinner
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section class="wrapper"> | |
<div class="spinner"> | |
<i></i> | |
<i></i> | |
<i></i> | |
<i></i> | |
<i></i> | |
<i></i> | |
<i></i> | |
</div> | |
</section> | |
<section class="wrapper dark"> | |
<div class="spinner"> | |
<i></i> | |
<i></i> | |
<i></i> | |
<i></i> | |
<i></i> | |
<i></i> | |
<i></i> | |
</div> | |
</section> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Vivid CSS3 Spinner | |
Made by Kevin Jannis (@kevinjannis) | |
Inspired by http://gif.flrn.nl/post/111106392227 | |
View more at www.janniskev.in | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import "compass/css3"; | |
$colors: #2172b8 | |
#18a39b | |
#82c545 | |
#f8b739 | |
#f06045 | |
#ed2861 | |
#c12680 | |
#5d3191; | |
$inner: 30px; | |
$border: 6px; | |
$spacing: 1px; | |
* { | |
-webkit-box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
box-sizing: border-box; | |
} | |
section.wrapper { | |
padding: 40px 0; | |
&.dark { | |
background: #313134; | |
} | |
} | |
div.spinner { | |
@include animation(rotate 10s infinite linear); | |
position: relative; | |
display: block; | |
margin: auto; | |
$size: $inner + length($colors) * ($border + $spacing) * 2; | |
width: $size; | |
height: $size; | |
i { | |
@include animation( | |
rotate 3s infinite cubic-bezier(.09, .6, .8, .03) | |
); | |
@include transform-origin(50%, 100%, 0); | |
position: absolute; | |
display: inline-block; | |
top: 50%; | |
left: 50%; | |
border: solid $border transparent; | |
border-bottom: none; | |
@each $current in $colors { | |
$i: index($colors, $current); | |
&:nth-child(#{$i}) { | |
$size: $inner + $i * ($border + $spacing) * 2; | |
@include animation-timing-function( | |
cubic-bezier(.09, .3 * $i, .12 * $i, .03) | |
); | |
width: $size; | |
height: $size / 2; | |
margin-top: -$size / 2; | |
margin-left: -$size / 2; | |
border-color: $current; | |
border-top-left-radius: $inner + $i * $border; | |
border-top-right-radius: $inner + $i * $border; | |
} | |
} | |
} | |
} | |
@include keyframes(rotate) { | |
to { | |
@include rotateZ(360deg); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment