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, minimum-scale=1.0">
  <title>JS Bin</title>
</head>
<body>
  <div class="container">
    <div class="rotator"><div class="circle"></div></div>
    <div class="rotator"><div class="circle"></div></div>
    <div class="rotator"><div class="circle"></div></div>
  </div>
</body>
</html>
 
html {
  background: black;
}
@keyframes wobble {
  50% {
    transform: scaleY(0.9);
  }
}
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
.container {
  position: absolute;
  top: 50px;
  left: 50px;
}
.rotator {
  position: absolute;
  top: 0;
  left: 0;
  animation: rotate 12s infinite linear;
  mix-blend-mode: screen;
}
.circle {
  position: relative;
  animation: wobble 5s infinite ease-in-out;
  width: 200px;
  height: 200px;
  border: 15px solid #f00;
  border-radius: 100%;
  transform: scaleX(0.9);
}
.rotator:nth-child(2) {
  animation-duration: 10s;
}
.rotator:nth-child(2) .circle {
  border-color: #0f0;
  animation-duration: 4s;
}
.rotator:nth-child(3) {
  animation-duration: 14s;
}
.rotator:nth-child(3) .circle {
  border-color: #00f;
  animation-duration: 6s;
}
Output

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

Dismiss x
public
Bin info
jakearchibaldpro
0viewers