Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8207921
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T09:09:46+00:00 2026-06-07T09:09:46+00:00

I have a CSS3 animation that jostles around at random when I click Play.

  • 0

I have a CSS3 animation that jostles around at random when I click “Play”. The problem is that I have been unable to stop the jostling when I click “Stop” which what I need to accomplish.

I have tried to use both the “-webkit-animation-play-state” and the jquery .stop() function but to no avail. I think I am close but just can’t quite seem to get this one.

I have created a jsfiddle and the code is below.

Thanks in advance!

<html>
<head>
<style>
#sec {
    background: url(http://placekitten.com/200/200);
    background-repeat:no-repeat;
    z-index: 3;
    position: absolute;
    width: 200px;
    height: 200px;
    top: 45px;
    left: 105px;
}​
</style>
<script>
$(document).ready(function(){
    $("#play-bt").click(function(){
      setInterval( function() {
      var seconds = Math.random() * -20;
      var sdegree = seconds * 2    ;
      var num = -30;
      var together = num + sdegree;
      var srotate = "rotate(" + together + "deg)";
      $("#sec").css({"-moz-transform" : srotate, "-webkit-transform" : srotate});
      }, 100 );
      });

    $("#stop-bt").click(function(){
            $("#sec").stop(stopAll);
        })

 })
</script>
</head>
<body>
<div id="sec"></div>
<br/>
<div id="play-bt">Play</div>
<br/>
<div id="stop-bt">Stop</div>
</body
</html>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T09:09:47+00:00Added an answer on June 7, 2026 at 9:09 am

    The counterpart of setInterval() which is used to stop it is clearInterval(). Each call to setInterval() returns an interval ID, which you can pass to clearInterval() to stop it.

    So, you’ll need to store the result of setInterval(), and clear it when you click the stop btn.

    $(document).ready(function(){
        var animation = null;
        $("#play-bt").click(function(){
          if (animation !== null) {      // Add this if statement to prevent
             return;                     // doubled animations
          }
          animation = setInterval( function() {
            var seconds = Math.random() * -20;
            var sdegree = seconds * 2    ;
            var num = -30;
            var together = num + sdegree;
            var srotate = "rotate(" + together + "deg)";
            $("#sec").css({"-moz-transform" : srotate, "-webkit-transform" : srotate});
          }, 100 );
          });
    
        $("#stop-bt").click(function(){
                //$("#sec").stop(stopAll);
            if (animation !== null) {
                clearInterval(animation);
                animation = null;
            }           
        });
    
     }); 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a CSS3 animation that needs to be restarted on a click. It's
I have this CSS3 animation that works in Chrome .circle-label-rotate { -webkit-animation-name: rotateThis; -webkit-animation-duration:.5s;
So I have created a CSS3 animation that does not behave consistently across the
I have a bit of CSS3 animation which works perfectly in all the browser
Is there a way to have CSS3 transitions/animations for a div that's just been
I have made a CSS3 animation plugin for jquery that works perfectly in JS
I have a div that i'm animating with css3 on hover. The animation goes
I have a custom animation in CSS3 which I can transition into view, but
I have added a shake animation class (Css3) which i add when the text
I have a problem with CSS3 property for using my own fonts @font-face. In

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.