gpt4 book ai didi

javascript - 全屏背景幻灯片弄乱了响应式粘性页脚

转载 作者:行者123 更新时间:2023-11-28 16:48:37 24 4
gpt4 key购买 nike

我正在尝试将粘性页脚放在它的位置,但我的全屏背景幻灯片以某种方式将其移到内容下方。我正在关注本网站的响应式粘性页脚教程 Sticky footer tutorial其中页面内容设置为 display:table,页脚设置为 display:table-row。在我将幻灯片放映到图片之前,这非常有效。一旦我删除幻灯片,粘性页脚就可以工作了!有没有办法解决这个问题并将粘性页脚保持在底部?。你可以在这里看到问题 link with the problem .

我的 CSS 和 HTML 是

<!DOCTYPE html>
<html>
<head>
<title> HTML Structure</title>
<script type="text/javascript" src="/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="/jquery-bgstretcher-3.3.1.min.js"></script>
<style>
html {
height: 100%;
overflow: hidden;
}

body {
height: 100%;
overflow: scroll;
-webkit-overflow-scrolling: touch;
}

.site {
display: table;
height: 100%;
table-layout: fixed;
width: 100%;
}

.site-content {
width: 100%;
color:#FBF7F7;
text-align:center;
background:#2DEFEC repeat;
height:200px;
margin-bottom:10px;
}

.site-footer {
display: table-row;
height: 1px;
background:#2A1818 repeat;
width:100%;
color:#FBF7F7;
text-align:center;
}

.bgstretcher-area {
text-align: left;
}
.bgstretcher {
background: black;
overflow: hidden;
width: 100%;
position: fixed;
z-index: 1;
}
.bgstretcher,
.bgstretcher ul,
.bgstretcher li {
left: 0;
top: 0;
}
.bgstretcher ul,
.bgstretcher li {
position: absolute;
}
.bgstretcher ul,
.bgstretcher li {
margin: 0;
padding: 0;
list-style: none;
}
/* Compatibility with old browsers */
.bgstretcher {
_position: absolute;
}
.bgs-description-pane {
display: block;
background: rgba(0, 0, 0, 0.7);
position: relative;
z-index: 10000;
padding: 15px;
color: #ffffff;
font-size: 14px;
}
</style>
</head>
<body>
<div id="page" class="hfeed site">
<header id="masthead" class="site-header" role="banner"></header>
<div id="content" class="site-content">I am just some content!</div>
<footer id="colophon" class="site-footer" role="contentinfo">I am a footer</footer>
</div>
</body>
<script type="text/javascript">
jQuery(function($){
$("body").bgStretcher({
images: ["/1-1.jpg", "/2-1.jpg"],
imageWidth: 1024,
imageHeight: 768
});
});
</script>
</html>

最佳答案

您应该制作一个完整的表格布局,以便粘性页脚 正常工作。查看以下简化的演示并阅读内联评论,看看您是否遗漏了任何重要内容。

jsfiddle

html, body, #page {
height: 100%; /*make the elements to cover the whole page height*/
margin: 0;
}
#page {
display: table;
width: 100%;
}
.site-header,
.site-content,
.site-footer {
display: table-row; /*for all the three sections*/
}
.site-content {
height: 100%; /*push header and footer to their minimum height */
background: silver;
}
<div id="page" class="hfeed site">
<header id="masthead" class="site-header" role="banner">header</header>
<div id="content" class="site-content">I am just some content!</div>
<footer id="colophon" class="site-footer" role="contentinfo">I am a footer</footer>
</div>

更新,OP 使用的 jQuery 插件,在 #page 周围添加了一些容器 div,因此要么将它们全部设置为 height:100%;,或者简单地设置 #page{height:100vh;} revised jsfiddle .

关于javascript - 全屏背景幻灯片弄乱了响应式粘性页脚,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32877565/

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