Q:

How to play and stop CSS animation using jQuery

0

How to play and stop CSS animation using jQuery

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Use the jQuery css() method

You can use the jQuery css() method in combination with the CSS3 animation-play-state property to play and stop CSS animations in the middle of a cycle.

Let's take a look at the following example to understand how it basically works:

<!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;}
}
/* Standard syntax */
@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 Animations do not work in Internet Explorer 9 and earlier versions.</p>
</body>
</html>

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

JavaScript / jQuery Frequently Asked Questions

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
How to disable or enable a form element using jQue... >>
<< How to animate div width on mouse hover using jQue...