广告 U专家

footer当网页内容大于浏览器高度时跟随网页移动,当网页内容小于浏览器高度时固定在底部 code 运维技术

admin 2025-03-17 130

 

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>我是网页标题</title>
    <style>
        /* 确保页面内容占满视口高度 */
        html, body {
            height: 100%;
            margin: 0;
            padding: 0;
        }
 
        /* 使用 flexbox 布局 */
        body {
            display: flex;
            flex-direction: column;
        }
 
        /* 内容区域自动扩展 */
        .content {
            flex: 1;
            padding: 20px;
            background-color: #f9f9f9;
        }
 
        /* Footer 样式 */
        footer {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 10px 0;
        }
 
        /* 链接样式 */
        footer a {
            color: #fff;
            text-decoration: none;
        }
 
        footer a:hover {
            text-decoration: underline;
        }
    </style>
</head>
<body>
    <div class="content">
        <h1>欢迎使用</h1>
        <p>这里是网页的主要内容区域。当内容高度小于浏览器高度时,Footer 会固定在底部;当内容高度大于浏览器高度时,Footer 会跟随页面滚动。</p>
        <p>你可以添加更多内容来测试 Footer 的行为。</p>
    </div>
    <footer>
        <div class="container">
            <p class="mb-0">&copy; 2025 我是网页标题. 保留所有权利.</p>
            <p class="mb-0"><a href="#">隐私政策</a> | <a href="#">使用条款</a></p>
        </div>
    </footer>
    <script>
        function adjustFooter() {
            const body = document.body; 
            const html = document.documentElement; 
            const footer = document.querySelector('footer'); 
 
            // 检查页面内容高度是否小于视口高度 
            if (body.scrollHeight  <= window.innerHeight)  {
                footer.style.position  = 'fixed';
                footer.style.bottom  = '0';
                footer.style.width  = '100%';
            } else {
                footer.style.position  = 'static';
            }
        }
 
        // 初始化时调用 
        adjustFooter();
 
        // 监听窗口大小变化 
        window.addEventListener('resize',  adjustFooter);
 
        // 监听内容变化(例如动态加载内容)
        const observer = new MutationObserver(adjustFooter);
        observer.observe(document.body,  { childList: true, subtree: true });
    </script>
</body>
</html>

 

代码说明

  1. HTML 结构
    • body 包含一个 content 区域和一个 footer
    • content 区域是网页的主要内容部分。
    • footer 包含版权信息和链接。
  2. CSS 样式
    • 使用 flexbox 布局,确保 content 区域自动扩展占满剩余空间。
    • footer 默认样式为居中文本和背景色。
  3. JavaScript 逻辑
    • adjustFooter 函数动态检查页面内容高度与视口高度的关系,决定 footer 是固定还是跟随滚动。
    • 监听窗口大小变化和内容变化,确保 footer 行为实时更新。

使用说明

  1. 将上述代码保存为一个 .html 文件(如 index.html )。
  2. 在浏览器中打开该文件,即可看到效果。
  3. 可以通过增减 content 区域的内容来测试 Footer 的行为。

示例效果

  • 如果页面内容较少,Footer 会固定在浏览器底部。
  • 如果页面内容较多,Footer 会跟随页面滚动。
最新回复 (0)
全部楼主
    • MSDN,我告诉你(中文站)
      2
        登录 注册 获取赞助码
返回