这就是我对paper-dialog
元素所拥有的:
<paper-dialog entry-animation="ripple-animation" exit-animation="slide-right-animation" modal>
...
</paper-dialog>
使用'非共享'类型的动画(slide-right-animation
)不是问题,它可以正常工作,但“共享”类型的动画不会产生以下错误:
ripple-animation: fromPage is undefined!
Couldnt play ( ripple-animation ). TypeError: Cannot read property 'cancel' of null(…)
如何在paper-dialog
元素上使用此动画效果?
感谢。