jQuery:动画宽度/高度,但保持居中
我在页面上有一个元素,我已经水平和垂直居中(它是一个 jQuery UI 模态对话框),并且想要使用 .animate() 调整它的大小,如下所示:
<div id="element" style="width: 100px; height: 100px;">
Hi Stack Overflow!
</div>
<script type="text/javascript">
$('#element').animate({ height: "200px" });
</script>
效果很好,除了该元素仅向下增长。我想做的是让元素在两个方向上垂直增长(在本例中每个方向增长 50px),以便它保持居中。有办法可以做到吗?
I have an element on the page that I've already centered horizontally and vertically (It's a jQuery UI Modal Dialog), and want to resize it using .animate() like this:
<div id="element" style="width: 100px; height: 100px;">
Hi Stack Overflow!
</div>
<script type="text/javascript">
$('#element').animate({ height: "200px" });
</script>
That works fine, except the element only grows downwards. What I'm trying to do is have the element grow vertically in both directions (in this case 50px in each direction) so it stays centered. Is there a way that it can be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
现场演示
计算公式确定如何制作边距
感谢@bobsoap 提醒我使用 offset.top
Live Demo
Formula for figuring out what to make the margin
Thanks @bobsoap for reminding me to use offset.top
类似的事情(抱歉它没有格式化代码)我确信你可以正确插入它。
That sort of thing (sorry its not code formatted) i'm sure you can insert it correctly.