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>
  <script src="//code.jquery.com/jquery-2.1.1.min.js"></script>
</head>
<body>
<div class="blinksth animated"></div>  
<a href="javascript:void(0)" class="js-paused">paused</a>
<a href="javascript:void(0)" class="js-running">running</a>
<a href="javascript:void(0)" class="js-change-class">changeClass - hotfix - 1</a>
<a href="javascript:void(0)" class="js-change-class-alt">changeClass - hotfix - 2</a>
</body>
</html>
 
.animated {
    -webkit-animation: blink 1s ease-in-out infinite;
    animation: blink 1s ease-in-out infinite;
}
.ani-long{
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
}
@-webkit-keyframes 'blink' {
    0% { background: rgba(255,0,0,0.5); }
    50% { background: rgba(255,0,0,0); }
    100% { background: rgba(255,0,0,0.5);}
}
.blinksth {
    width: 100px;
    height: 100px;
}
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers