mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
b6bec797d6
1. Introduces a set of helper methods to easily create and define new effects. 2. Uses clip animations and placeholders instead of wrappers for clip effects. 3. Ensures all animations are detectable as animated Fixes #10599 Fixes #9477 Fixes #9257 Fixes #9066 Fixes #8867 Fixes #8671 Fixes #8505 Fixes #7885 Fixes #7041 Closes gh-1017
69 lines
1.8 KiB
JavaScript
69 lines
1.8 KiB
JavaScript
(function( $ ) {
|
|
module( "effect.scale: Scale" );
|
|
|
|
function run( position, v, h, vo, ho ) {
|
|
var desc = "End Position Correct: " + position + " (" + v + "," + h + ") - origin: (" + vo + "," + ho + ")";
|
|
asyncTest( desc, function() {
|
|
expect( 2 );
|
|
function complete() {
|
|
closeEnough( parseInt( test.css( h ), 10 ), target[ h ], 1, "Horizontal Position Correct " + desc );
|
|
closeEnough( parseInt( test.css( v ), 10 ), target[ v ], 1, "Vertical Position Correct " + desc );
|
|
start();
|
|
}
|
|
var test = $( ".testScale" ),
|
|
css = {
|
|
position: position
|
|
},
|
|
effect = {
|
|
effect: "scale",
|
|
mode: "effect",
|
|
percent: 200,
|
|
origin: [ vo, ho ],
|
|
complete: complete,
|
|
duration: 1
|
|
},
|
|
target = {},
|
|
relative = position === "relative";
|
|
|
|
css[ h ] = 33;
|
|
css[ v ] = 33;
|
|
target[ h ] = h === ho ? css[ h ] : ho === "center" ? css[ h ] - 35 : css[ h ] - 70;
|
|
target[ v ] = v === vo ? css[ v ] : vo === "middle" ? css[ v ] - 35 : css[ v ] - 70;
|
|
if ( relative && h === "right" ) {
|
|
target[ h ] += 70;
|
|
}
|
|
if ( relative && v === "bottom" ) {
|
|
target[ v ] += 70;
|
|
}
|
|
test.css( css );
|
|
test.effect( effect );
|
|
});
|
|
}
|
|
|
|
function suite( position ) {
|
|
run( position, "top", "left", "top", "left" );
|
|
run( position, "top", "left", "middle", "center" );
|
|
run( position, "top", "left", "bottom", "right" );
|
|
/* Firefox is currently not capable of supporting detection of bottom and right....
|
|
run( position, "bottom", "right", "top", "left" );
|
|
run( position, "bottom", "right", "middle", "center" );
|
|
run( position, "bottom", "right", "bottom", "right" );
|
|
*/
|
|
}
|
|
|
|
$(function() {
|
|
suite( "absolute" );
|
|
suite( "relative" );
|
|
var fixedElem = $( "<div>" )
|
|
.css({
|
|
position: "fixed",
|
|
top: 10
|
|
})
|
|
.appendTo( "body" );
|
|
if ( fixedElem.offset().top === 10 ) {
|
|
suite( "fixed" );
|
|
}
|
|
});
|
|
|
|
})( jQuery );
|