animationend
的听众可以这样做吗?
以下监听器animationend
未从我的自定义关键帧.fire-ripple {animation: ripple 0.65s linear;}
触发;
@keyframes ripple {
/*scale the element to 250% to safely cover the entire link and fade it out*/
100% {opacity: 1; transform: scale(2.5);}
}
listeners: { 'animationend': 'removeRipple' },
removeRipple: function() {
rippleElement = document.getElementById('ripple-element');
rippleElement.classList.remove('fire-ripple');
},
我可以做el.addEventListener('animationend'...
但是我试图将它保持为聚合物惯例。
注意:我知道纸张波纹,我故意使用自己的波纹