美文网首页
2020-05-29 网站官网首页全屏滚动效果

2020-05-29 网站官网首页全屏滚动效果

作者: MrLimLee | 来源:发表于2020-05-29 11:14 被阅读0次

首先看下效果图

网站官网首页全屏滚动效果
<html>

<head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

  <script src="https://www.jq22.com/jquery/jquery-1.7.1.js"></script>

  <style type="text/css">
    #scroll-animate {
      overflow: hidden;
    }

    #scroll-animate-main {
      width: 100%;
      left: 0;
      position: fixed;
    }

    #heightPage,
    #heightScroll {
      width: 10px;
      top: 0;
      position: absolute;
      z-index: 99;
    }

    #heightPage {
      left: 0;
    }

    #heightScroll {
      right: 0;
    }

    header {
      width: 100%;
      height: 100%;
      /* background: url(https://raweader.jpg) no-repeat 50% 50%; */
      top: 0;
      position: fixed;
      z-index: -1;
    }

    footer {
      width: 100%;
      height: 300px;
      background: gray;
      bottom: -300px;
      position: fixed;
      z-index: -1;
    }

    .content {
      height: 1000px;
      min-height: 1000px;
      background: #ededed;
      position: relative;
      z-index: 1;
    }

    .content1 {
      height: 1000px;
      min-height: 1000px;
      background: #d3d2d2;
      position: relative;
      z-index: 1;
    }

    .content2 {
      height: 1000px;
      min-height: 1000px;
      background: #3f3f3f;
      position: relative;
      z-index: 1;
    }

    .content3 {
      height: 1000px;
      min-height: 1000px;
      background: #9c3535;
      position: relative;
      z-index: 1;
    }

    .wrapper-parallax {
      margin-top: 100%;
      margin-bottom: 300px;
      box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    }

    h1 {
      width: 100%;
      height: 100%;
      padding: 0;
      margin: 0;
      text-transform: uppercase;
      text-align: center;
      font-family: Helvetica;
      font-size: 150px;
      color: #fff;
    }

    header h1 {}

    .content h1 {
      line-height: 1000px;
      color: #999;
    }

    .content1,
    .content2,
    .content3 h1 {
      line-height: 1000px;
      color: #999;
    }

    footer h1 {
      line-height: 300px;
    }

    header,
    footer,
    #scroll-animate-main {
      -webkit-transition-property: all;
      -moz-transition-property: all;
      transition-property: all;

      -webkit-transition-duration: 0.4s;
      -moz-transition-duration: 0.4s;
      transition-duration: 0.4s;

      -webkit-transition-timing-function: cubic-bezier(0, 0, 0, 1);
      -moz-transition-timing-function: cubic-bezier(0, 0, 0, 1);
      transition-timing-function: cubic-bezier(0, 0, 0, 1);
    }
  </style>
</head>

<body>
  <div id="scroll-animate">
    <div id="scroll-animate-main">
      <div class="wrapper-parallax">
        <header>
          <h1 style="color: #999;">Header</h1>
        </header>

        <section class="content">
          <h1>Content</h1>
        </section>

        <section class="content1">
          <h1>Content1</h1>
        </section>

        <section class="content2">
          <h1>Content2</h1>
        </section>

        <section class="content3">
          <h1>Content3</h1>
        </section>

        <footer>
          <h1>Footer</h1>
        </footer>
      </div>
    </div>
  </div>

  <script>
    function scrollFooter(scrollY, heightFooter) {
      console.log(scrollY);
      console.log(heightFooter);

      if (scrollY >= heightFooter) {
        $('footer').css({
          'bottom': '0px'
        });
      } else {
        $('footer').css({
          'bottom': '-' + heightFooter + 'px'
        });
      }
    }

    $(window).load(function () {
      var windowHeight = $(window).height(),
        footerHeight = $('footer').height(),
        heightDocument = (windowHeight) + ($('.content').height()) + ($('.content1').height() * 3) + ($('footer').height()) - 20;

      // Definindo o tamanho do elemento pra animar
      $('#scroll-animate, #scroll-animate-main').css({
        'height': heightDocument + 'px'
      });

      // Definindo o tamanho dos elementos header e conteúdo
      $('header').css({
        'height': windowHeight + 'px',
        'line-height': windowHeight + 'px'
      });

      $('.wrapper-parallax').css({
        'margin-top': windowHeight + 'px'
      });

      scrollFooter(window.scrollY, footerHeight);

      // ao dar rolagem
      window.onscroll = function () {
        var scroll = window.scrollY;

        $('#scroll-animate-main').css({
          'top': '-' + scroll + 'px'
        });

        $('header').css({
          'background-position-y': 50 - (scroll * 100 / heightDocument) + '%'
        });

        scrollFooter(scroll, footerHeight);
      }
    });
  </script>

</body>

</html>

相关文章

  • 2020-05-29 网站官网首页全屏滚动效果

    首先看下效果图

  • swiper制作全屏滚动首页

    公司需要制作国外官网,各种花里胡哨的动效,并且要求全屏滚动 开始编写首页前,需要先将全屏滚动弄好,我对比swipe...

  • 前端开发-有趣的网页动画特效

    WOW.js – 让页面滚动更有趣 使用说明:链接地址演示地址:OW.js演示-oppo官网首页 jQuery全屏...

  • 毕设-网站页面设计记录

    全屏图片模板 首页/目录效果 工业设计公司html5网站模板 轮播效果/每一个具体模块下面 //游戏分块模板/ga...

  • jquary网站首页大图轮播

    网站首页全屏banner和滚动新闻代码(jQuery),属于站长常用代码 使用步骤 1、引用 2、拷贝代码注释区域...

  • 前端轮播式官网解决方案

    目前市面上有些官网首页采用的是轮播式的。也就是每一块内容都是占满全屏的,滚动鼠标滚轮,就像切换轮播图一样切换下一章...

  • CSS-隐藏滚动条

    比如element官网左边组件的滚动栏。 css代码: 隐藏后效果

  • fullPage.js

    jQuery全屏滚动插件fullPage.js 演 示 下 载 简介 如今我们经常能见到全屏网站,尤其是国外网站。...

  • jquery全屏滚动插件fullpage中文文档

    今天给大家带来一款Jquery全屏滚动插件fullpage,这款插件可以非常方便快速的做一个全屏滚动高大上的网站,...

  • contentInset偏移

    利用contentInset可以实现滚动偏移效果。 如图:tableView是全屏大小,滚动到最底会出现偏移。

网友评论

      本文标题:2020-05-29 网站官网首页全屏滚动效果

      本文链接:https://www.haomeiwen.com/subject/strxzhtx.html