only transition properties that have changed
This commit is contained in:
parent
1649bd0d98
commit
345ec01f19
@ -3886,7 +3886,7 @@
|
|||||||
unmatchedElement.dataset.autoAnimateTarget = 'unmatched';
|
unmatchedElement.dataset.autoAnimateTarget = 'unmatched';
|
||||||
} );
|
} );
|
||||||
|
|
||||||
css.push( '[data-auto-animate="running"] [data-auto-animate-target="unmatched"] { transition: all '+ (animationOptions.duration*0.8) +'s ease '+ (animationOptions.duration*0.2) +'s; }' );
|
css.push( '[data-auto-animate="running"] [data-auto-animate-target="unmatched"] { transition: opacity '+ (animationOptions.duration*0.8) +'s ease '+ (animationOptions.duration*0.2) +'s; }' );
|
||||||
}
|
}
|
||||||
|
|
||||||
// Setting the whole chunk of CSS at once is the most
|
// Setting the whole chunk of CSS at once is the most
|
||||||
@ -4016,15 +4016,18 @@
|
|||||||
|
|
||||||
var css = '';
|
var css = '';
|
||||||
|
|
||||||
|
var toStyleProperties = Object.keys( toProps.styles );
|
||||||
|
|
||||||
// Only create animate this element IF at least one style
|
// Only create animate this element IF at least one style
|
||||||
// property has changed
|
// property has changed
|
||||||
if( Object.keys( toProps.styles ).length > 0 ) {
|
if( toStyleProperties.length > 0 ) {
|
||||||
|
|
||||||
// Instantly move to the 'from' state
|
// Instantly move to the 'from' state
|
||||||
fromProps.styles['transition'] = 'none';
|
fromProps.styles['transition'] = 'none';
|
||||||
|
|
||||||
// Animate towards the 'to' state
|
// Animate towards the 'to' state
|
||||||
toProps.styles['transition'] = 'all '+ options.duration +'s '+ options.easing + ' ' + options.delay + 's';
|
toProps.styles['transition'] = 'all '+ options.duration +'s '+ options.easing + ' ' + options.delay + 's';
|
||||||
|
toProps.styles['transition-property'] = toStyleProperties.join( ', ' );
|
||||||
|
|
||||||
// Build up our custom CSS. We need to override inline styles
|
// Build up our custom CSS. We need to override inline styles
|
||||||
// so we need to make our styles vErY IMPORTANT!1!!
|
// so we need to make our styles vErY IMPORTANT!1!!
|
||||||
|
Loading…
Reference in New Issue
Block a user