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>
  <canvas id="canvas"></canvas>
</body>
</html>
 
.shape {
    width: 150px;
    height: 150px;
    margin: 10px 0 0 75px;
    border-radius: 50%;
    animation: color 3.33s both;    
}
@keyframes color {
    0% { background-color: red; }
    7% { background-color: orange; }
   17% { background-color: yellow; }
   22% { background-color: green; }
   42% { background-color: cyan; }
   82% { background-color: blue; }
   100% { background-color: purple; }    
}
Output

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

Dismiss x
public
Bin info
zswangpro
0viewers