(delay, isKeyframeAnimation)
| 663 | } |
| 664 | |
| 665 | function getCssDelayStyle(delay, isKeyframeAnimation) { |
| 666 | var prop = isKeyframeAnimation ? ANIMATION_DELAY_PROP : TRANSITION_DELAY_PROP; |
| 667 | return [prop, delay + 's']; |
| 668 | } |
| 669 | |
| 670 | function blockTransitions(node, duration) { |
| 671 | // we use a negative delay value since it performs blocking |
no outgoing calls
no test coverage detected