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>
<h1 class="percent">%</h1>
</body>
</html>
 
.percent {
  text-align: center;
  font-size: 18px;  
   -webkit-animation: percentAnimate 2s infinite;
  -moz-animation:    percentAnimate 2s infinite;
  -o-animation:      percentAnimate 2s infinite;
  animation:         percentAnimate 2s infinite;
}
@-webkit-keyframes percentAnimate {
   0%, 100% {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    
    -webkit-transform: scale(1.5, 1.5);
    -moz-transform: scale(1.5, 1.5);
    -ms-transform: scale(1.5, 1.5);
    -o-transform: scale(1.5, 1.5);
    transform: scale(1.5, 1.5);
    
  }
}
Output

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

Dismiss x
public
Bin info
japanajamapro
0viewers