fullpagejs实现的拥有header和foooter的全屏滚动…

2018-06-24 02:04:36来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

fullpagejs实现的拥有header和foooter的全屏滚动,

技术要点:给section元素加fp-auto-height类,

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="utf-8">
    <title>fullpage footer</title>
    <link href="https://cdn.bootcss.com/fullPage.js/2.9.5/jquery.fullpage.css" rel="stylesheet">
    <script src="https://cdn.bootcss.com/jquery/1.12.4/jquery.js"></script>
    <script src="https://cdn.bootcss.com/fullPage.js/2.9.5/jquery.fullpage.js"></script>
    <style>
        .section {
            text-align: center;
            font: 30px "Microsoft Yahei";
            color: #fff;
        }

        .header, .footer {
            height: 100px;
        }
    </style>
    <script>
        $(function () {
            $('#stumpx').fullpage({
                sectionsColor: ['#1bbc9b', '#4BBFC3', '#7BAABE', '#f90']
            });
        });
    </script>
</head>
<body>
<div id="stumpx">
    <div class="section fp-auto-height header">
        <h3>第一屏 header</h3>
    </div>
    <div class="section">
        <h3>第二屏</h3>
    </div>
    <div class="section">
        <h3>第三屏</h3>
    </div>
    <div class="section fp-auto-height footer">
        <h3>第四屏 footer</h3>
    </div>
</div>
</body>
</html>

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:页面渲染的同步和异步区别?

下一篇:近期前端中的 一些常见的面试题