Q:

Run an animation with less frames using jquery

0

Run an animation with less frames using jquery

All Answers

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

HTML Code :

<!DOCTYPE html>
<html>
<head>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
  <style>
  div {
    width: 150px;
    height:85px;
    margin: 5px;
    float: left;
    background: #254BF4;
  }
  </style>
  <meta charset="utf-8">
  <title>Run an animation with less frames</title>
</head>
<body>
<p><input type="button" value="Run"></p>
<div></div>
</body>
</html>

JavaScript Code :

jQuery.fx.interval = 200;
$( "input" ).click(function() {
  $( "div" ).toggle(3000);
});

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

total answers (1)

Similar questions


need a help?


find thousands of online teachers now