Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!doctype html>
<html>
  <head>
    <title>Template</title>
  </head>
  <body>
    <div class="container">
      <h1 class="spin logo">🐝</h1>
    </div>
  </body>
</html>
 
.logo {
  text-align: center;
  font-size: 10em;
  font-weight: 500;
}
.spin {
  animation-duration: 3s;
  animation-name: spin;
}
@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
zacecholapro
0viewers