WEB 教程
实践 示例
HTML 参考手册
CSS 参考手册
PHP 参考手册

如何使用 jQuery 播放和停止 CSS 动画

主题:JavaScript / jQuery上一页|下一页

答案:使用jQuery css()方法

您可以结合使用 jQuery css() 方法和 CSS3 animation-play-state 属性来在循环中间播放和停止 CSS 动画。

让我们看一下以下示例,以了解其基本工作原理:

<!DOCTYPE html>
<html lang="en">
<head>
<title>jQuery Play and Stop CSS Animation</title>
<style>
.animated {
    height: 200px;
    margin: 10px 0;
    background: url("smiley.png") no-repeat left center #e4eacf;  
    -webkit-animation: test 4s infinite; /* Chrome, Safari, Opera */
    animation: test 4s infinite;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes test {
    50% {background-position: right center;}
}
/* 标准语法 */
@keyframes test {
    50% {background-position: right center;}
}
</style>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script>
    $(document).ready(function(){
        $(".play-animation").click(function(){
            $(".animated").css("animation-play-state", "running");
        });
        $(".stop-animation").click(function(){
            $(".animated").css("animation-play-state", "paused");
        });
    });
</script>
</head>
<body>
    <div class="animated"></div>
    <button type="button" class="play-animation">Play Animation</button>
    <button type="button" class="stop-animation">Stop Animation</button>
    <p><strong>Warning:</strong> CSS 动画在 Internet Explorer 9 和更早版本中不起作用。</p>
</body>
</html>

FAQ 相关问题解答

以下是与此主题相关的更多常见问题解答:

Advertisements