gpt4 book ai didi

javascript - 如何将元素锚定到窗口的左侧

转载 作者:行者123 更新时间:2023-11-29 17:36:24 25 4
gpt4 key购买 nike

我有一个包含两个元素的页面,一个页眉和一个页脚。

html,
body,
main {
width: 100%;
height: 100%;
background: #888;
margin: 0;
padding: 0;
}

header {
width: 100%;
height: 20%;
background: rgba(0, 255, 0, .1);
}

footer {
width: 10000px;
height: 80%;
background: rgba(255, 0, 0, .1);
}
<main>
<header></header>
<footer></footer>
</main>

请检查这个codepen一个活生生的例子。


当我水平滚动窗口时,我需要标题始终位于屏幕中间。

我不能使用 position: fixed 因为我需要这个元素在页面流中。

position: sticky 完全符合我的需要,但不幸的是我不能使用它,因为父元素的宽度与视口(viewport)宽度相同。如果我将父级宽度设置为大于视口(viewport)本身的宽度,我会实现我想要的,但我希望有更好的解决方案。

我更喜欢纯 CSS 解决方案,但我愿意接受 JS 解决方案。


到目前为止我尝试过的许多事情之一是监听滚动事件并向元素添加一个等于 window.scrollX 的边距,这个想法是它会保持锚定到窗口的左边缘。但这实际上不起作用,我不确定为什么。

在示例中,如果您尝试设置 position: sticky; left: 0; 在标题中,然后给主要元素一个 width: 10000px;,你会看到我想要的布局。

是否可以实现相同的布局,但不必设置宽度?

最佳答案

页脚是否需要硬编码宽度?这似乎是您遇到最多问题的地方。如果您只是在页脚中有需要显示的内容并且可能比页眉更宽,那么我建议使用如下解决方案:

html, body, main {
width: 100%;
height: 100%;
background: #888;
margin: 0;
padding: 0;
}

header {
width: 100%;
height: 20%;
background: rgba(0,255,0,.1);
}

footer {
display: flex;
overflow-x: scroll;
height: 80%;
background: rgba(255,0,0,.1);
}

h1 {
margin-left: 70px;
}
<main>
<header>Header</header>
<footer>
<h1>Content</h1>
<h1>Content</h1>
<h1>Content</h1>
<h1>Content</h1>
<h1>Content</h1>
<h1>Content</h1>
<h1>Content</h1>
<h1>Content</h1>
<h1>Content</h1>
<h1>Content</h1>
</footer>
</main>


关于javascript - 如何将元素锚定到窗口的左侧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56080633/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com