<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv=”X-UA-Compatible” content=”IE=edge,chrome=1″/>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>控制CSS3 动画播放、暂停、重放</title>
</head>
<body>
<ul>
<li>播放:element.style.animationPlayState = 'running'</li>
<li>暂停:element.style.animationPlayState = 'paused'</li>
<li>重放:element.classList删除添加动画样式</li>
</ul>
<hr>
<div style="padding-right: 100px">
<div id="animated_div" class="demo">
CSS3<br><span style="font-size:10px">动画</span>
</div>
</div>
<hr>
<div align="center">
<button id="playBtn">播放</button>
<button id="pauseBtn">暂停</button>
<button id="replayBtn">重放</button>
</div>
</body>
</html>
var animated = document.getElementById('animated_div');
if (animated.style.animation === undefined) {
animated.parentNode.innerText = '您的浏览器不支持CSS3 动画';
} else {
//播放
document.querySelector('#playBtn').addEventListener('click', run);
//暂停
document.querySelector('#pauseBtn').addEventListener('click', function() {
animated.style.animationPlayState = 'paused';
});
//重放
document.querySelector('#replayBtn').addEventListener('click', function() {
animated.classList.remove('demo');
setTimeout(function() {
animated.classList.add('demo');
run();
}, 10);
});
}
function run() {
animated.style.animationPlayState = 'running';
}
Output
You can jump to the latest bin by adding /latest
to your URL
Keyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |