Bug Tracker

Ticket #1597 (closed bug: worksforme)

Opened 1 year ago

Last modified 1 year ago

animation adding up incorrect with minus sign

Reported by: bmsterling Assigned to: anonymous
Type: bug Priority: major
Milestone: 1.2.1 Component: fx
Version: 1.2 Keywords: animation, minus sign
Cc: Needs: Review

Description

Url for testing: http://benjaminsterling.com/experiments/bug1.2/animationbug.htm In the example url, when you do:

$('#moveRightDown').click(function(){
	$('.box').animate({left:400,top:400},100);
	return false;
});

The box will move to left 400 and top 400 when you click the button. But when you do the following:

$('#moveLeftUp').click(function(){
	$('.box').animate({left:-100,top:-100},100);
	return false;
});

The box will move back 100 left, and 100 top each time you click the button. It looks like the adding the minus sign is causing the issue.

Attachments

Change History

Changed 1 year ago by jsorgalla

I've discovered the same problem with my jCarousel plugin. Since 1.2, jQuery is assuming a relative animation with leading +/- signs in the value.

So, it isn't any longer possible to animate left/top to an absolute negative position.

Changed 1 year ago by john

  • status changed from new to closed
  • resolution set to fixed

Fixed in SVN rev [3299].

Changed 1 year ago by john

  • component changed from core to fx

Changed 1 year ago by john

  • status changed from closed to reopened
  • resolution deleted

Changed 1 year ago by john

  • status changed from reopened to closed
  • resolution set to worksforme
Note: See TracTickets for help on using tickets.