目 录CONTENT

文章目录

滚动视差

萧瑟
2023-02-28 / 0 评论 / 0 点赞 / 334 阅读 / 1,950 字 / 正在检测是否收录...
温馨提示:
本文最后更新于 2023-08-04,若内容或图片失效,请留言反馈。部分素材来自网络,若不小心影响到您的利益,请联系我们删除。

视差滚动(Parallax Scrolling)是指多层背景以不同的速度移动,形成立体的运动效果,带来非常出色的视觉体验。

滚动视差

点击体验

通过设置属性

background-attachment: fixed;

实现。此关键字表示背景相对于视口固定。即使一个元素拥有滚动机制,背景也不会随着元素的内容滚动。

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        section {
            height: 100vh;
            background: #ffffff;
            color: #000;
            line-height: 100vh;
            text-align: center;
            font-size: 20vh;
        }

        .g-img {
            background-attachment: fixed;
            background-size: cover;
            background-position: center center;
            color: #ffffff;
        }

        .g-img1 {
            background-image: url('http://pic7.photophoto.cn/20080407/0034034859692813_b.jpg');
        }

        .g-img2 {
            background-image: url('http://up.enterdesk.com/edpic_source/21/00/00/210000f8e772d7fc0758e67ae4b48807.jpg');
        }

        .g-img3 {
            background-image: url('https://images.unsplash.com/photo-1440688807730-73e4e2169fb8?dpr=1&auto=format&fit=crop&w=1500&h=1001&q=80&cs=tinysrgb&crop=');
        }
    </style>
</head>

<body>

    <section class="g-word">Header</section>
    <section class="g-img g-img1">IMG1</section>
    <section class="g-word">Content1</section>
    <section class="g-img g-img2">IMG2</section>
    <section class="g-word">Content2</section>
    <section class="g-img g-img3">IMG3</section>
    <section class="g-word">Footer</section>
</body>

</html>

MDN - background-attachment

浏览器兼容性:
兼容性


weixin_white

0

评论区