Open GoogleCodeExporter opened 9 years ago
I thought the delayed animation could be easily done with the usual JQ .delay
command, though it doesn't work:
<script type="text/javascript">
$(document).ready(function(){
$('#rotateMe').delay(200).rotateAnimation(359.9);
});
</script>
Is there place to stick the .delay that will create the same result?
(I'm very new to JQ, so I don't know a lot of the basic stuff yet, but I've
been trying to put it before the .ready and places like that, with no luck)
Original comment by craig.s....@gmail.com
on 11 Oct 2010 at 8:46
You can send questions directly to me on my mail, here we post rather
issues/new features :)
I didnt use a .delay function, and I cant tell you why it doesnt work, but you
can try instead:
$(document).ready(function(){
setTimeout(function(){
$('#rotateMe').rotateAnimation(359.9);
},400);
});
Original comment by wil...@gmail.com
on 11 Oct 2010 at 8:52
Original comment by wil...@gmail.com
on 25 Jan 2011 at 11:42
After rotation return new width and height.
A simple one but would avoid a big headache :)
Original comment by analyt...@proweb.co.uk
on 4 Oct 2011 at 3:17
Original issue reported on code.google.com by
IanTres...@gmail.com
on 10 Sep 2010 at 12:00