jQueryUI:子动画上的动画父元素高度
当我使用 jQuery UI .hide('slide', {direction:'up'})
动画隐藏子元素时,我也想为其父元素的高度设置动画。
这里是我所拥有的示例。动画看起来不太好,因为父级的高度在其子级被隐藏后立即更改,而不是像 jQuery .slideUp()
动画那样在一个过程中更改。
When I hide a child element using jQuery UI .hide('slide', {direction:'up'})
animation I would like to animate its parent's height as well.
Here is an example of what I have. The animation doesn't look so well because parent's height is changed right after its child gets hidden, not in a process, as in jQuery .slideUp()
animation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我很快改变了你的 CSS,如下所示,它看起来很不错。稍微搞一下,它看起来应该和你想要的一模一样。
I quickly changed up your CSS as follows and it looks pretty good. A bit of fooling around and it should look exactly like what you want.
更新:一些调整:)测试:http://jsfiddle.net/inti /BG4Hk/16/
尝试这样的事情:
它需要更多的工作来处理未解决的问题,但这是一个开始。
UPDATE: some tweaks :) Tested: http://jsfiddle.net/inti/BG4Hk/16/
Try something like this:
It needs a bit more work, to handle loose ends, but it's a start.