fancybox:之后更改高度和宽度属性
是的,我有一个具有指定高度和宽度的简单花式盒子。
当您单击此 fancybox 内的链接时,它会运行 ajax 请求。在这个请求成功后,我希望 fancybox 能够改变高度和宽度。
Yes i have a simple fancybox with specified height and width.
When you click a link inside this fancybox it runs a ajax request. On this request´s success, i wish the fancybox to change height and width.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为您的ajax 创建一个div,并创建另一个来包含它。让包含的 div 具有固定高度和
overflow: hide
。当 ajax 加载时,在内部 div 上使用 jQuery 运行.height()
,然后分配一个变量并使容器.animate()
适合。Create a div for your ajax, and another to contain it. Have the containing div be fixed height and
overflow: hidden
. When the ajax loads run.height()
with jQuery on the inner div, then assign a variable and have the container.animate()
to fit.有点晚了但仍然有效:
或者
A little late but still valid:
or