Skip to content

Commit

Permalink
Effects: 1.8 Animation Rewrite - thanks @mikesherov and @gibson042
Browse files Browse the repository at this point in the history
  • Loading branch information
gnarf authored and dmethvin committed Apr 23, 2012
1 parent 8ad22a2 commit 58ed62e
Show file tree
Hide file tree
Showing 4 changed files with 618 additions and 546 deletions.
24 changes: 16 additions & 8 deletions src/css.js
@@ -1,18 +1,20 @@
(function( jQuery ) {

jQuery.cssExpand = [ "Top", "Right", "Bottom", "Left" ];

var ralpha = /alpha\([^)]*\)/i,
ropacity = /opacity=([^)]*)/,
// fixed for IE9, see #8346
rupper = /([A-Z]|^ms)/g,
rnum = /^[\-+]?(?:\d*\.)?\d+$/i,
rnumsplit = /^([\-+]?(?:\d*\.)?\d+)(.*)$/i,
rnumnonpx = /^-?(?:\d*\.)?\d+(?!px)[^\d\s]+$/i,
rrelNum = /^([\-+])=([\-+.\de]+)/,
rmargin = /^margin/,

cssShow = { position: "absolute", visibility: "hidden", display: "block" },

// order is important!
cssExpand = [ "Top", "Right", "Bottom", "Left" ],
cssExpand = jQuery.cssExpand,
cssPrefixes = [ "O", "Webkit", "Moz", "ms" ],

curCSS;
Expand Down Expand Up @@ -264,6 +266,13 @@ if ( document.defaultView && document.defaultView.getComputedStyle ) {
};
}

function setPositiveNumber( elem, value ) {
var matches = rnumsplit.exec( value );
return matches ?
Math.max( 0, matches[ 1 ] ) + ( matches [ 2 ] || "px" )
: value;
}

function getWidthOrHeight( elem, name, extra ) {

// Start with offset property, which is equivalent to the border-box value
Expand Down Expand Up @@ -348,11 +357,7 @@ jQuery.each([ "height", "width" ], function( i, name ) {
}
},

set: function( elem, value ) {
return rnum.test( value ) ?
value + "px" :
value;
}
set: setPositiveNumber
};
});

Expand Down Expand Up @@ -436,7 +441,6 @@ jQuery.each({
padding: "",
border: "Width"
}, function( prefix, suffix ) {

jQuery.cssHooks[ prefix + suffix ] = {
expand: function( value ) {
var i,
Expand All @@ -453,6 +457,10 @@ jQuery.each({
return expanded;
}
};

if ( !rmargin.test( prefix ) ) {
jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;
}
});

})( jQuery );

0 comments on commit 58ed62e

Please sign in to comment.