( animation, props )
| 8689 | } |
| 8690 | |
| 8691 | function createTweens( animation, props ) { |
| 8692 | jQuery.each( props, function( prop, value ) { |
| 8693 | var collection = ( tweeners[ prop ] || [] ).concat( tweeners[ "*" ] ), |
| 8694 | index = 0, |
| 8695 | length = collection.length; |
| 8696 | for ( ; index < length; index++ ) { |
| 8697 | if ( collection[ index ].call( animation, prop, value ) ) { |
| 8698 | |
| 8699 | // we're done with this property |
| 8700 | return; |
| 8701 | } |
| 8702 | } |
| 8703 | }); |
| 8704 | } |
| 8705 | |
| 8706 | function Animation( elem, properties, options ) { |
| 8707 | var result, |