I want to put rotating logo in my website. I mean it should be continuously rotating. I have tried doing like this with jquery. please have a look and suggest me where i am going wrong. Why this code is not working. Please help me

var rotation = function (){
   $("#img").rotate({
      angle:0, 
      animateTo:360, 
      callback: rotation,
      easing: function (x,t,b,c,d){        // t: current time, b: begInnIng value, c: change In value, d: duration
          return c*(t/d)+b;
      }
   });
}
rotation();

I have used this code in my html like this

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script type="text/javascript" src="jquery-1.4.4.js"></script>
<script type="text/javascript" src="jquery.easing.1.3.js"></script>
<script type="text/javascript">
var rotation = function (){
   $("#img").rotate({
      angle:0, 
      animateTo:360, 
      callback: rotation,
      easing: function (x,t,b,c,d){        // t: current time, b: begInnIng value, c: change In value, d: duration
          return c*(t/d)+b;
      }
   });
}
rotation();

</script>


<title>Untitled Document</title>
</head>

<body>


<img src="LMIH_LOGO.png" width="174" height="322" name="img" id="img" />
</body>
</html>

Its not working. Please anybody help me in this

link|improve this question

78% accept rate
1  
I recommend an animated gif for this. – Jeremy Holovacs Sep 6 '11 at 19:39
You are not including rotate plugin – Usman Sep 6 '11 at 19:39
Usman, I have included jquery.rotate.1-1.js and still its not working :( – priya Sep 6 '11 at 19:46
feedback

2 Answers

up vote 5 down vote accepted

jQuery does not have a .rotate() function. I think you mean to be including the jQuery Rotate plugin.

link|improve this answer
3  
Not only that, but at the time he is calling his stuff, the DOM is not ready. – Xeon06 Sep 6 '11 at 19:40
@max: used rotate plugin and changed the function, now its working. Thank you very much. Thanks! – priya Sep 6 '11 at 19:59
feedback

I'm not sure if there is a bug within the code it self or if its just not starting, but my first thing to try would be to move the function call to rotate to the document ready listener...

Try:

$(document).ready(function() {
rotation();
});

instead of just

rotation();

The problem may be that the image you are trying to manipulate isnt actually loaded in the dom when this function executes. Moving it to the document ready callback will ensure the dom is fully loaded before executing.

link|improve this answer
Rick, i tried this method but still the result is not coming :(. – priya Sep 6 '11 at 19:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.