Jquery如何实现和slideIn(MooTools)一样的效果?
这是我想要的效果吗?不幸的是,jQuery 的 slideDown()
效果并不相同。这就是我想要的效果(代码和演示位于jsFiddle)。
我知道 jQuery 有一个 animate() 方法。但是到底要涉及什么才能达到与 MooTool 的 slideIn()
方法相同的效果呢?
Here is the effect I am after? Unfortunately, jQuery's slideDown()
effect isn't the same. This is the effect that I am after (Code and demo is located at jsFiddle).
I am aware that jQuery has an animate()
method. But what exactly should be involved to achieve the same effect as MooTool's slideIn()
method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
下面是在JQuery中滑入滑出(左/右)的方法,你应该能够快速编辑代码以符合你想要的效果:
----CSS----
----JQuery----
----HTML----
Here's a way to slide in and out (left/right) in JQuery, you should be able to quickly edit the code to match the effect you want:
----CSS----
----JQuery----
----HTML----
看看这个小提琴。它会折叠包含的 div,因此在关闭时不会占用页面上的空间。这几乎正是 MooTools 所做的(并不是我了解 MooTools,而是我确实观察到了 Firebug 的 CSS 变化)。
Check out this fiddle. It collapses the containing div so it does not take up space on the page while it is closed. This is pretty much exactly what MooTools does (not that I know MooTools but I did observe the CSS changes with Firebug).