Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
<div class="circle">  <button>click here</button></div>
</body>
</html>
 
.circle {
  background-color: white; 
  border: 1px solid red;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  
  animation: pulse 1s infinte;
  -webkit-animation: pulse 1.2s infinite;
}
button {
  background-color: green; 
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
@-webkit-keyframes pulse {
    from {
      width: 50px;
      height: 50px;
    }
    to {
      width: 100px
      height: 100px;
    }
}
@keyframes pulse {
    from {
      width: 50px;
      height: 50px;
    }
    to {
      width: 100px;
      height: 100px;
    }
}
Output 300px

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

Dismiss x
public
Bin info
anonymouspro
0viewers