Skip to content

Instantly share code, notes, and snippets.

@stefancova
Created June 22, 2012 12:28
Show Gist options
  • Save stefancova/2972469 to your computer and use it in GitHub Desktop.
Save stefancova/2972469 to your computer and use it in GitHub Desktop.
CSS3 spinner @ CodePen
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>CSS3 spinner &middot; CodePen</title>
<link rel="stylesheet" href="http://codepen.io/stylesheets/css/normalize.css">
<style>
/*using prefix-free*/
body{
height:500px;
background-image: radial-gradient(center, ellipse cover, #7d7e7d 0%,#0e0e0e 100%);
}
#spinner{
width: 200px;
height: 200px;
margin:100px auto 0;
position: relative;
animation-name: rotate;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-direction: normal;
animation-timing-function: steps(12);
animation-fill-mode: none;
animation-delay: 0s;
}
@keyframes rotate{
from { transform:rotate(0deg);}
to { transform:rotate(360deg);}
}
.bar {
position: absolute;
z-index: 1;
top:45%;
left:75%;
width: 50%;
height: 10%;
border-radius:10px;
box-shadow: 0 0 5px -1px rgba(0,0,0,0.5);
transform-origin:-50% 50%;
}
.bar:nth-child(1){
background-color: #dbdbdb;
transform:rotate(-60deg);
}
.bar:nth-child(2){
background-color: #c7c7c7;
transform:rotate(-30deg);
}
.bar:nth-child(3){
background-color: #b3b3b3;
transform:rotate(0deg);
}
.bar:nth-child(4){
background-color: #9e9e9e;
transform:rotate(30deg);
}
.bar:nth-child(5){
background-color: #8f8f8f;
transform:rotate(60deg);
}
.bar:nth-child(6){
background-color: #7a7a7a;
transform:rotate(90deg);
}
.bar:nth-child(7){
background-color: #666666;
transform:rotate(120deg);
}
.bar:nth-child(8){
background-color: #525252;
transform:rotate(150deg);
}
.bar:nth-child(9){
background-color: #3d3d3d;
transform:rotate(180deg);
}
.bar:nth-child(10){
background-color: #292929;
transform:rotate(210deg);
}
.bar:nth-child(11){
background-color: #141414;
transform:rotate(240deg);
}
.bar:nth-child(12){
background-color: #000000;
transform:rotate(270deg);
}
</style>
<style>
#codepen-footer, #codepen-footer * {
-webkit-box-sizing: border-box !important;
-moz-box-sizing: border-box !important;
box-sizing: border-box !important;
}
#codepen-footer {
display: block !important;
position: fixed !important;
bottom: 0 !important;
left: 0 !important;
width: 100% !important;
padding: 0 10px !important;
margin: 0 !important;
height: 30px !important;
line-height: 30px !important;
font-size: 12px !important;
color: #eeeeee !important;
background-color: #505050 !important;
text-align: left !important;
background: -webkit-linear-gradient(top, #505050, #383838) !important;
background: -moz-linear-gradient(top, #505050, #383838) !important;
background: -ms-linear-gradient(top, #505050, #383838) !important;
background: -o-linear-gradient(top, #505050, #383838) !important;
border-top: 1px solid black !important;
border-bottom: 1px solid black !important;
border-radius: 0 !important;
box-shadow: inset 0 1px 0 #6e6e6e, 0 2px 2px rgba(0, 0, 0, 0.4) !important;
z-index: 300 !important;
font-family: "Lucida Grande", "Lucida Sans Unicode", Tahoma, sans-serif !important;
letter-spacing: 0 !important;
word-spacing: 0 !important;
}
#codepen-footer a {
color: #a7a7a7 !important;
text-decoration: none !important;
}
#codepen-footer a:hover {
color: white !important;
}
</style>
<script>
// Kill alerts, confirmations and prompts
window.alert = function(){};
window.confirm = function(){};
window.prompt = function(){};
window.open = function(){};
window.print = function(){};
</script>
<script src="http://codepen.io/javascripts/libs/prefixfree.min.js"></script>
</head>
<body>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<div id="spinner">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
</body>
</html>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="http://codepen.io/javascripts/libs/modernizr.js"></script>
<div id="codepen-footer">
<a style="color: #f73535 !important;" href="https://codepen.wufoo.com/forms/m7x3r3/def/field14=" onclick="window.open(this.href, null, 'height=517, width=680, toolbar=0, location=0, status=1, scrollbars=1, resizable=1'); return false">Report Abuse</a>
&nbsp;
<a href="/stefancova/pen/css3_spinner/1">Edit this Pen</a>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<div id="spinner">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
</body>
</html>
/*using prefix-free*/
body{
height:500px;
background-image: radial-gradient(center, ellipse cover, #7d7e7d 0%,#0e0e0e 100%);
}
#spinner{
width: 200px;
height: 200px;
margin:100px auto 0;
position: relative;
animation-name: rotate;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-direction: normal;
animation-timing-function: steps(12);
animation-fill-mode: none;
animation-delay: 0s;
}
@keyframes rotate{
from { transform:rotate(0deg);}
to { transform:rotate(360deg);}
}
.bar {
position: absolute;
z-index: 1;
top:45%;
left:75%;
width: 50%;
height: 10%;
border-radius:10px;
box-shadow: 0 0 5px -1px rgba(0,0,0,0.5);
transform-origin:-50% 50%;
}
.bar:nth-child(1){
background-color: #dbdbdb;
transform:rotate(-60deg);
}
.bar:nth-child(2){
background-color: #c7c7c7;
transform:rotate(-30deg);
}
.bar:nth-child(3){
background-color: #b3b3b3;
transform:rotate(0deg);
}
.bar:nth-child(4){
background-color: #9e9e9e;
transform:rotate(30deg);
}
.bar:nth-child(5){
background-color: #8f8f8f;
transform:rotate(60deg);
}
.bar:nth-child(6){
background-color: #7a7a7a;
transform:rotate(90deg);
}
.bar:nth-child(7){
background-color: #666666;
transform:rotate(120deg);
}
.bar:nth-child(8){
background-color: #525252;
transform:rotate(150deg);
}
.bar:nth-child(9){
background-color: #3d3d3d;
transform:rotate(180deg);
}
.bar:nth-child(10){
background-color: #292929;
transform:rotate(210deg);
}
.bar:nth-child(11){
background-color: #141414;
transform:rotate(240deg);
}
.bar:nth-child(12){
background-color: #000000;
transform:rotate(270deg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment