wilq32-pwitkowski / jqueryrotate

jQueryRotate - plugin to rotate images by any angle cross-browse with animation support
http://jqueryrotate.com
151 stars 58 forks source link

IE 6/7/8 Jumpy Image #5

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Rotate +180deg on mouseover
2. Rotate back to normal position (0deg) on mouseout 
3. Move cursor off picture, image will jump twice and will not be at the 
correct angle

What is the expected output? What do you see instead?
Same as Firefox, Opera, Safari - rotate 180 then back again. In IE image will 
jump twice after mouseout and will not be at the correct angle

What version of the product are you using? On what operating system?
Win XP, IE6/7/8

Please provide any additional information below.
Code used:
jQuery(document).ready(function(${
  $('#logo').rotate({preservePosition:true,bind:[
  {"mouseover":function(){
    $(this).rotateAnimation(180);
  }
  },{"mouseout":function(){
    $(this).rotateAnimation(0);
  }
  }]});
});

Original issue reported on code.google.com by web.9...@googlemail.com on 18 Jun 2010 at 4:20

GoogleCodeExporter commented 9 years ago
Doesn't jump in IE if you set 1deg instead of 0deg for mouseout...

Original comment by web.9...@googlemail.com on 18 Jun 2010 at 4:38

GoogleCodeExporter commented 9 years ago
Thanks for reporting I will try to find out a wise solution for that :) (or use 
the one provided by H. Thomas)

Original comment by wil...@gmail.com on 23 Jun 2010 at 7:58

GoogleCodeExporter commented 9 years ago
I just found out that if you want to rotate using long float numbers (like 
0.12343241424) it just makes sometimes strange results. I just did a rouding 
that helps with that stuff in new version

Original comment by wil...@gmail.com on 23 Jun 2010 at 9:26

GoogleCodeExporter commented 9 years ago
Great. I look forward to the release, thank you :)

Original comment by web.9...@googlemail.com on 23 Jun 2010 at 9:30

GoogleCodeExporter commented 9 years ago
Give me 10 minutes :)

Original comment by wil...@gmail.com on 23 Jun 2010 at 9:32

GoogleCodeExporter commented 9 years ago
Got it, really smooth now - thanks again!

Original comment by web.9...@googlemail.com on 23 Jun 2010 at 10:00