使用 JQuery 向上/向下滑动直到达到一定高度 - 这可能吗?
是否可以将 div 向上滑动(关闭它)但不能完全滑动?
我的意思是,向上滑动但保留显示一点 div,这可能吗?
提前致谢, 内存
Is it possible to slide a div up (closing it) but not completely ?
I mean, slide up but leave a little of that div displayed, is that possible ?
Thanks in advance,
mem
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
像这样的东西可能会起作用:
它可以不是
500px
它可以只是 div 的原始大小,并且30px
可以是您想要显示的任意大小被隐藏。从评论更新
这是一个小提琴,显示如果在变量中声明它可以允许不同的高度。动画后淡出应该不是问题。
http://jsfiddle.net/Skooljester/HdQSX/
Something like this may work:
Instead of the
500px
it can just be the original size of the div, and the30px
can be however much you want to show when it's meant to be hidden.Update from the comments
Here's a fiddle showing that it can allow different heights if declared in a variable. And fading out after animation shouldn't be a problem.
http://jsfiddle.net/Skooljester/HdQSX/
我不建议使用 jQuery 的 animate 方法,因为它在某些浏览器中有时会出现错误。
通过设置 div 高度或最大高度,使用 CSS 过渡对幻灯片进行动画处理是一个更好的选择(根据我的说法)。
CSS:
单击时,使用 jQuery 设置最大高度:
然后在再次单击时删除样式:
您可以查看 这个演示示例
I don't recommend using jQuery's animate method because it's sometimes buggy in some browsers.
Animate the slide with CSS transitions is a better choice (according to me), by setting the div height or max-height.
CSS:
on click, set max-height with jQuery:
Then remove the styling when it's clicked again:
You can look at this demo example
将 div 打开到其原始高度的更好方法是使用 SlideDown()。
问题是这个函数需要先隐藏div才能打开它。
下面的方法有点难看,但效果很好:
The better way to open div to its original height is using slideDown().
The problem is that this function requires div to be hidden before it can open it.
The following way is a little bit ugly but works well: