将 div 置于水平滚动站点的中心

发布于 2024-10-18 13:27:00 字数 153 浏览 2 评论 0原文

想知道是否有人可以建议将 div 置于水平滚动站点屏幕中间的最佳方法。

我希望标题保持在屏幕中央,但网站的其余部分滚动。通常我只是将左右边距设置为零,但是当宽度设置为完整滚动宽度时,我想我需要做一些 jQuery 技巧来首先找到窗口宽度?

任何建议都非常感激!

Wonder if anyone could advise on the best way to center a div in the middle of the screen of a horizontal scrolling site.

I want the header to stay positioned in the center of the screen but the rest of the site scrolls. usually I'd just set left and right margins to zero, but as the width is set to the full scroll width I imagine I'll need to do some jQuery trickery to find the window width first of all?

Any advice very gratefully received!

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

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

发布评论

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

评论(3

梦魇绽荼蘼 2024-10-25 13:27:00

可以用CSS完成,不需要javaScript。

<div class="page">
    <div class="header"></div>
</div>

.page{
    width:2000px;
    height:500px;
}
.header{
    width:300px;
    height:100px;
    background-color:red;
    position:fixed;
    top:0;
    left:50%;
    margin-left:-150px; /* negative half the width */

}

检查工作示例 http://jsfiddle.net/ZEcax/

Can be done with CSS, no need for javaScript.

<div class="page">
    <div class="header"></div>
</div>

.page{
    width:2000px;
    height:500px;
}
.header{
    width:300px;
    height:100px;
    background-color:red;
    position:fixed;
    top:0;
    left:50%;
    margin-left:-150px; /* negative half the width */

}

Check working example at http://jsfiddle.net/ZEcax/

凉墨 2024-10-25 13:27:00

您应该查看 Center 2.0 插件。它完全符合您的要求。

You should take a look at the Center 2.0 plugin. It does exactly what you want.

庆幸我还是我 2024-10-25 13:27:00

这很容易。

CSS:

 #center {
    position: fixed;
}

jQuery:

$('#center').css({
    'top': $(window).height()/2,
    'left': $(window).width()/2,
    'margin-left': $('#modal').width/2,
    'margin-top': $('#modal').height()/2
});

HTML

<div id="center">
    <!-- content goes here -->
</div>

That's easy enough.

CSS:

 #center {
    position: fixed;
}

jQuery:

$('#center').css({
    'top': $(window).height()/2,
    'left': $(window).width()/2,
    'margin-left': $('#modal').width/2,
    'margin-top': $('#modal').height()/2
});

HTML

<div id="center">
    <!-- content goes here -->
</div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文