Bug Tracker

Ticket #1431 (closed bug: worksforme)

Opened 1 year ago

Last modified 1 year ago

Bug in Animations

Reported by: tmferreira Assigned to: anonymous
Type: bug Priority: major
Milestone: 1.2.2 Component: fx
Version: 1.1.3 Keywords: animate function
Cc: Needs: Patch

Description

Hi! I detect a bug using the animate function.

See the difference between firefox and internet explorer: http://www.tmferreira.com.br/blog/wp-content/animacoes-em-javascript-com-jquery/index_lateral.html

I am using FireFox? 2.0 e Internet Explorer 6.0. Using FF, there are an interpolation, but using IE, the box moves hides and shows on the right.

Sorry my poor English. I am Brazilian.

Bye.

Attachments

Change History

Changed 1 year ago by john

  • priority changed from critical to major
  • owner deleted
  • component changed from core to fx

Changed 1 year ago by davidserduke

I can't reproduce this bug so it might be fixed.

Based on the description this might have been caused by a pause in the browser. The way the animation system works is by use setInterval. And when the "step" function is called it calculates where the animated object is supposed to be based on the start time of the animation and the current time. The result is if the browser is busy and doesn't get to call the setInterval function quickly enough it will look like it is jumping as it tries to keep up with the animation speed. Under an extreme case (in this test case it would mean the function wasn't called for 600ms) the animated object would seem to disappear and just show up at its end point.

That may or may not have been what the bug reporter saw, but I can't reproduce his problem in IE6 at the moment.

Changed 1 year ago by davidserduke

  • status changed from new to closed
  • resolution set to worksforme
  • milestone changed from 1.1.4 to 1.2.2

I'm afraid it still works for me. I don't see the problem in my IE6.

Note: See TracTickets for help on using tickets.