Skip to main content

Search and Top Navigation

#8533 closed bug (notabug)

Opened August 30, 2012 02:23PM UTC

Closed August 30, 2012 02:26PM UTC

Easing: "swing" not equal to "easeOutQuad" anymore

Reported by: Hector Owned by:
Priority: minor Milestone: 1.9.0
Component: ui.effects.core Version: 1.8.23
Keywords: Cc:
Blocked by: Blocking:
Description

Consistent in 1.8.18+/jQuery 1.7.x (not tested in previous) and until 1.8.22/jQuery 1.8.0, but in 1.8.23/jQuery 1.8.0 "swing" doesn't correspond to the easeOutQuad easing function anymore, at least for .animate()

Simple test:

<div style="border: 1px solid red; height: 50px; width: 0px;"></div>

$(function() {

$("div").animate({width: 1000}, 3000, "swing");

});

If you test that code in 2 parallel iframes, one with 1.8.22 and one with 1.8.23, the easing difference is obvious.

Attachments (0)
Change History (1)

Changed August 30, 2012 02:26PM UTC by scottgonzalez comment:1

component: ui.coreeffects.core
resolution: → invalid
status: newclosed

This is not a bug. The fact that we used to override swing is a bug. If you want easeOutQuad, use it.