如何很好地将前置项目滑到列表中
与 twitter 的 ux 类似,我想在列表中添加一个提要项,并在输入时将其向下滑动。
这是我的尝试: http://jsfiddle.net/26jaw/9/
我学到了什么到目前为止,要使 SlideDown 工作,需要设置高度,而 min-height 不起作用。因此,鉴于提要项目的高度是可变的,我在将其注入页面后找到了高度。然后我设置高度,然后向下滑动。但由于某种原因,这不起作用,正如您在 jsfiddle 中看到的那样。 jQuery 报告的高度无效,高度错误,导致文本被截断。
有什么想法吗?更好的解决方案?谢谢
similar to twitter's ux, I want to prepend a feed item to a list and have it SlideDown on entry.
Here's my attempt here: http://jsfiddle.net/26jaw/9/
What I've learned so far is that for the slideDown to work the height needs to be set, min-height doesn't work. So given that the feed item height is variable, I find the height after injecting it in the page. I then set the height, and slideDown. but for some reason that isn't working as you can see in the jsfiddle. The height being reported by jQuery is invalid and the height is wrong resulting in text being cut off.
Any ideas? Better solutions? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 CSS 规则
#feedlist {}
中删除此声明:然后将 JavaScript 更改为:
请参阅更新的 fiddle 。
Remove this declaration from the CSS rule
#feedlist {}
:Then change your JavaScript to:
See updated fiddle.