We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在同一页面使用tabs切换显示此组件的瀑布流,每切换一次动画都要重新播放一次,如何关闭掉? 我尝试设置delay来取消动画,但只能稍微缩短,设置过低将会出现视图更新问题
想移除掉的动画效果:视频查看
The text was updated successfully, but these errors were encountered:
这个问题其实是因为你的tab使用的应该是v-if,这样每次切换组件都会重新渲染,你可以尝试下使用v-show,或者使用keep-alive,看能不能解决这个问题,只要你保持了组件状态,就能解决这个问题。
Sorry, something went wrong.
你还可以试试把animationDuration, animationDelay 这两个参数都设置为0,这两个设置为0后就没有动画了,然后你需要动画的话,可以加一个延迟器,再组件创建后的1s之后再把这个两个参数设置一个值
animationDuration
animationDelay
No branches or pull requests
在同一页面使用tabs切换显示此组件的瀑布流,每切换一次动画都要重新播放一次,如何关闭掉?
我尝试设置delay来取消动画,但只能稍微缩短,设置过低将会出现视图更新问题
想移除掉的动画效果:视频查看
The text was updated successfully, but these errors were encountered: