如何使用 jquery 滚动窗口 onload

发布于 2024-09-12 06:58:48 字数 274 浏览 3 评论 0原文

我在桌子中间有一张表格。我希望此表单始终位于窗口的垂直和水平中心,即使窗口大小小于表格。 我正在考虑使用jQuery的scrollTo函数并将其称为onLoad和onResize, http://demos.flesler.com/jquery/scrollTo/ 但我是一个初学者,我不知道该怎么做。我将不胜感激有关标头和脚本函数中的调用的任何帮助或示例。 非常感谢。

I have a form in the middle of a table. I would like this form to always be in the center of the window vertical and horizontally, even when the window size is smaller than the table.
I am thinking on using the scrollTo function of jQuery and call it onLoad and onResize,
http://demos.flesler.com/jquery/scrollTo/
but I am a begginer and I don't know how to do it. I would appreciate any help or example with the calls in the header and the script function.
Thank you very much.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

野鹿林 2024-09-19 06:58:48

如果您想要一个漂浮盒:
将您的表单放入 DIV 中,使其位置绝对,居中:
添加此 JQuery 插件:
http://plugins.jquery.com/project/elementcenter

$(document).ready(function() {
     $('#div_id').css('position','absolute');
     $('#div_id').center();
});

$(window).resize(function() {
     $('#div_id').center();
});

如果你想滚动:

$(document).ready(function() {
     window.scrollTo(0,$("#FORM_ID").offset().top);
});
$(window).resize(function() {
     window.scrollTo(0,$("#FORM_ID").offset().top);
});

If you want a floater box:
put your form in a DIV , make it's position absolute, center it:
Add this JQuery plugin:
http://plugins.jquery.com/project/elementcenter

$(document).ready(function() {
     $('#div_id').css('position','absolute');
     $('#div_id').center();
});

$(window).resize(function() {
     $('#div_id').center();
});

if you want to scroll:

$(document).ready(function() {
     window.scrollTo(0,$("#FORM_ID").offset().top);
});
$(window).resize(function() {
     window.scrollTo(0,$("#FORM_ID").offset().top);
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文