zoukankan      html  css  js  c++  java
  • stellar插件小例子

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
    body {
    font-size: 100px;
    color: white;
    text-shadow: 0 1px 0 black, 0 0 5px black;
    text-align: center;
    line-height: 600px;
    }
    p {
    padding: 0 0.5em;
    margin: 0;
    }
    .content {
    background-attachment: fixed;

    }
    #content1 {
    background-image: url("images/1.jpg");
    }
    #content2 {
    background-image: url("images/2.jpg");
    }
    #content3 {
    background-image: url("images/3.jpg");
    }
    #content4 {
    background-image: url("images/4.jpg");
    }
    .slow {
    position: absolute;
    top: 600px;
    left: 200px;
    }
    .fast {
    position: absolute;
    top: 600px;
    right: 200px;
    }
    </style>

    </head>
    <body>
    <div class="content" id="content1" data-stellar-background-ratio="0.3">
    <p>TEXT HERE</p>
    </div>
    <div class="content" id="content2" data-stellar-background-ratio="0.3">
    <p>TEXT HERE</p>
    </div>

    <div class="content" id="content3" data-stellar-background-ratio="0.3">
    <p class="one">TEXT HERE</p>
    </div>
    <div class="content" id="content4" data-stellar-background-ratio="0.3">
    <p >TEXT HERE</p>
    </div>
    </body>
    <script src="js/jquery.min.js"></script>
    <script src="js/jquery.stellar.min.js"></script>
    <script>
    $(function() {
      // 让content 的高度Wie为当前屏幕的高度
      $(".content").height($(window).height());
      $.stellar({
        horizontalScrolling: false, // 设置垂直 视差滚动效果 不是水平的
        responsive: true,
        //data-stellar-background-ratio="0.03" 设置背景滚动速度,要写在html中,不能写在这里
      });
    })
    </script>
    </html>

  • 相关阅读:
    URAL 1948 H
    int、long、long long取值范围
    Bonetrousle HackerRank 数学 + 思维题
    湖南省第十二届大学生计算机程序设计竞赛 problem A 2016
    Abbreviation ---- hackerrank
    POJ 3321 Apple Tree DFS序 + 树状数组
    HDU
    PICO CTF 2013 PHP 2: 85
    XSS进阶三
    XSS进阶二
  • 原文地址:https://www.cnblogs.com/pxxdbk/p/12680862.html
Copyright © 2011-2022 走看看