knockoutjs“联系人编辑器”滑动动画示例
在查看 knockoutjs 的“联系人编辑器”示例(此处链接)时,“添加联系人”按钮在底部创建一个新部分。有没有一种方法可以在底部进行扩展,并带有像jquery的滑动效果那样的动画效果?
感谢您的评论。
In looking at knockoutjs's 'Contacts Editor' example (link here), the 'Adding a contact' button creates a new section at the bottom. Is there a way to make that expansion at the bttom with the animation effect like jquery's slide down effect?
thanks for commenting.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用模板绑定的
afterAdd
功能做一些你想做的事情。为此,您需要将联系人渲染切换为使用模板绑定的
foreach
而不是 jQuery 模板的{{each}}
。以下是使用1.3 beta 原生模板引擎:http://jsfiddle.net/rniemeyer/am5JD/
You can use the
afterAdd
functionality of the template binding to do something like what you want.To do this, you would need to switch the contacts rendering to use the template binding's
foreach
rather than jQuery template's{{each}}
.Here is a sample using 1.3 beta's native template engine: http://jsfiddle.net/rniemeyer/am5JD/