CSS loader, inspired by Dan Edens iOS7 Toggle Pen: http://codepen.io/daneden/pen/cmIHG
Created
March 28, 2015 20:23
-
-
Save f8lrebel/64ece5977ceae7e04e2c to your computer and use it in GitHub Desktop.
CSS Loader
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
.loader |
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" | |
* | |
margin: 0 | |
padding: 0 | |
box-sizing: border-box | |
html, body | |
height: 100% | |
.loader | |
width: 400px | |
height: 40px | |
background-color: #ddd | |
top: 50% | |
left: 50% | |
margin: -40px -200px | |
position: absolute | |
border-radius: 100px | |
box-shadow: inset 0 0 0 2px rgba(0,0,0,.05) | |
.loader:after | |
border-radius: 100px | |
content: '' | |
position: absolute | |
background-color: #fff | |
left: 2px | |
top: 2px | |
bottom: 2px | |
right: 360px | |
animation-name: slide | |
animation-duration: 2s | |
animation-easing-function: linear | |
animation-iteration-count: infinite | |
box-shadow: 0 1px 2px rgba(0,0,0,.2) | |
@keyframes slide | |
0% | |
right: 360px | |
left: 2px | |
5% | |
left: 2px | |
50% | |
right: 2px | |
left: 360px | |
55% | |
right: 2px | |
100% | |
right: 360px | |
left: 2px |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment