Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <div class=busy></div>
</body>
</html>
 
.busy{
  width: 24px;
  height: 24px;
  
  border-radius: 50%;
  border-top: 2px solid blue;
  border-right: 2px solid transparent;
  animation: spin 1s linear infinite;
}
@keyframes spin
{
  to { transform : rotate(360deg); }
}
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers