A Pen by DigitalCoder on CodePen.
Last active
August 26, 2015 09:35
-
-
Save DigitalCoder/5cd61e3372c28885d005 to your computer and use it in GitHub Desktop.
eNqazr
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
CSS3 Spinning Preloader | |
------ | |
A [Pen](http://codepen.io/DigitalCoder/pen/eNqazr) by [DigitalCoder](http://codepen.io/DigitalCoder) on [CodePen](http://codepen.io/). | |
[License](http://codepen.io/DigitalCoder/pen/eNqazr/license). |
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
<!DOCTYPE html> | |
<html > | |
<head> | |
<meta charset="UTF-8"> | |
<title>CSS3 Spinning Preloader</title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<div id="loader-wrapper"> | |
<div id="loader"></div> | |
</div> | |
</body> | |
</html> |
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-wrapper { | |
position: fixed; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
z-index: 1000; | |
} | |
#loader { | |
display: block; | |
position: relative; | |
left: 50%; | |
top: 50%; | |
width: 150px; | |
height: 150px; | |
margin: -75px 0 0 -75px; | |
border-radius: 50%; | |
border: 3px solid transparent; | |
border-top-color: #3498db; | |
-webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */ | |
animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */ | |
} | |
#loader:before { | |
content: ""; | |
position: absolute; | |
top: 5px; | |
left: 5px; | |
right: 5px; | |
bottom: 5px; | |
border-radius: 50%; | |
border: 3px solid transparent; | |
border-top-color: #e74c3c; | |
-webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */ | |
animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */ | |
} | |
#loader:after { | |
content: ""; | |
position: absolute; | |
top: 15px; | |
left: 15px; | |
right: 15px; | |
bottom: 15px; | |
border-radius: 50%; | |
border: 3px solid transparent; | |
border-top-color: #f9c922; | |
-webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */ | |
animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */ | |
} | |
@-webkit-keyframes spin { | |
0% { | |
-webkit-transform: rotate(0deg); /* Chrome, Opera 15+, Safari 3.1+ */ | |
-ms-transform: rotate(0deg); /* IE 9 */ | |
transform: rotate(0deg); /* Firefox 16+, IE 10+, Opera */ | |
} | |
100% { | |
-webkit-transform: rotate(360deg); /* Chrome, Opera 15+, Safari 3.1+ */ | |
-ms-transform: rotate(360deg); /* IE 9 */ | |
transform: rotate(360deg); /* Firefox 16+, IE 10+, Opera */ | |
} | |
} | |
@keyframes spin { | |
0% { | |
-webkit-transform: rotate(0deg); /* Chrome, Opera 15+, Safari 3.1+ */ | |
-ms-transform: rotate(0deg); /* IE 9 */ | |
transform: rotate(0deg); /* Firefox 16+, IE 10+, Opera */ | |
} | |
100% { | |
-webkit-transform: rotate(360deg); /* Chrome, Opera 15+, Safari 3.1+ */ | |
-ms-transform: rotate(360deg); /* IE 9 */ | |
transform: rotate(360deg); /* Firefox 16+, IE 10+, Opera */ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment