search
HomeWeb Front-endCSS TutorialHigh performance parallax animation【translation】

High performance parallaxAnimation


爱也Love it or hate it, parallax effects are everywhere on the web. When used wisely, they can add depth and metaphor to applications, but the problem is that implementing a high-performance parallax effect can be a very challenging task. . In this article, we will discuss how to construct a high-performance parallax effect, and of course, cross-browser parallax effect. Schematic

High performance parallax animation【translation】Summary

Do not use scroll events(scroll events) or background-position(background-position

) to create parallax animations
  • ##Use CSS 3D transforms to create a more accurate parallax effect ##For iOS mobile devices. Safari uses position: sticky

    to ensure that parallax works
  • ## If you want an out-of-the-box solution, visit the Parallax helper

    JS
  • , here is also a demo demonstration
  • Parallax problem analysisBefore we begin, let’s take a look at two existing common methods of implementing parallax and discuss them. Why they are not suitable for what we are going for

  • Bad solution: using scroll events

The key requirement for parallax is that it should be scroll-coupled: for every position change as the page scrolls. , the position of the parallax element should also be updated This seems easy, one of the important mechanisms of modern browsers is that they can handle the work asynchronously. However, in most browsers, scroll events are. It is handled as a "best effort" job, which means: the browser does not

ensure that every frame of

's scroll animation is delivered!

This important information is delivered! Tell us why you should avoid

Using Javascript

to move elements based on scroll events:

Javascript does not ensure that parallax will maintain the same pace as the page scrolls

On some older versions of Mobile Safari. The scroll event is even triggered after the scroll is completed, which makes the scrolling effect based on Javascript impossible. In the newer version of Mobile Safari, the scroll event can be triggered during the animation, but it is different from Chr##. Like #ome, it is based on the "as good as possible" principle, so when the main thread is busy with other work, the scroll event will not be triggered immediately, which means the parallax effect is lost. Bad solution: Update background position

Another scenario we want to avoid is drawing every frame. Many solutions try to provide a parallax effect by changing the

background-position, but this will cause the browser to redraw the affected part when scrolling, which can be quite resource-consuming. This effect will make Animation lags. If we want to provide a high-quality parallax animation, what we want is a property that can be used as an acceleration (here we refer to transform

and

opacity

), which does not depend on scroll events.

CSS 3D

Scott Kellum and Keith Clark have both done important work in the field of using CSS 3D to achieve parallax effects. Very effective techniques they use are:

Create a container element and set overflow-y: scroll

to make it scrollable (and possibly Requires

overflow-x

: hidden

).
  1. For the above element, we will apply a <a href="http://www.php.cn/wiki/926.html" target="_blank">perspective</a> value and then set perspective-origin to <a href="http://www.php.cn/wiki/924.html" target="_blank"></a>top left

    , or
  2. 0 0
  3. .

    Apply a Z-axis transformation to the child elements of the above element, and then restore them back to achieve the parallax effect without affecting their size on the screen. <a href="http://www.php.cn/wiki/904.html" target="_blank"></a>The CSS for this solution looks like the following:

    .container {
      width: 100%;
      height: 100%;
      overflow-x: hidden;
      overflow-y: scroll;
      perspective: 1px;
      perspective-origin: 0 0;
    }
    
    .parallax-child {
      transform-origin: 0 0;
      transform: translateZ(-2px) scale(3);
    }
    Of course we assume that your HTML looks like the following:
    <p>
      </p><p></p>
    
    Adjustment The proportion of perspective
  4. Squeezing the child element back will require it to set a smaller proportion relative to

    perspective

    . You can calculate the required zoom ratio using the following equation:
(perspective - distance) / perspective

. Since we want the parallax element to appear as large as we originally set it to, it should scale according to this equation rather than staying the same.

拿上面的例子来说, perspective1px, 而 parallax-child 在 Z 轴方向是 -2px,这就意味着元素需要被放大3倍,你可以看到我们在 scale 中写入了 3 这个值。

对于任何没有应用 translateZ 的内容,你可以用 0 替代,也就是缩放比为 (perspective - 0) / perspective,结果为 1 ,即既不放大也不缩小。真的是非常方便。

为什么这种方案好用?

弄清楚为什么这种方案好用是非常重要的,因为我们很快就要使用这个知识了。滚动其实本质是一种变换,这是它为什么可以被加速的原因。滚动很大程度上使用GPU参与了图层的变换。一个常见的滚动(没有应用任何 perspective )是这样的:滚动这种情况下是以 1:1 的方式在对待滚动的元素和它的子元素。换人话说,如果你向下滚动一个元素 <a href="http://www.php.cn/code/4221.html" target="_blank">300</a>px,那么它的子元素向上变换了同样的数量: 300px

但是,如果对这个滚动元素应用 perspective 值会把这个过程“搞乱”:这个值改变了滚动变换的理想路线。现在如果一个 300px 的滚动可能把子元素移动了 150px,当然这取决于你给 perspectivetranslateZ 设置什么值。如果一个 translateZ 设置为0的子元素,它的滚动会一切如常 ( 1:1 ),但是一个被推向 Z 轴向( translateZ 不为 0 )的子元素将以不同的比例滚动!因此出现了视差效果。另外非常重要的一点是:这个过程本身就是浏览器内部的滚动机制的一部分,因此没有必要监听滚动事件或者改变背景位置。

美中不足:Mobile Safari

每种效果都有一些约束,对于变换( transform )来讲,对子元素的 3D 效果的保持就是这样。如果在应用 perspective 的元素和它的“视差”子元素的结构之中有其它元素的存在,那么 3D 的效果会被“拍扁”,也就是说效果将不复存在。

<p>
  </p><p>
    </p><p></p>
  

在上面的HTML中 .parallax-container 是一个新添加的元素,而它会"抹平" perspective,从而导致效果丢失。通常情况下,解决方案还是比较符合直觉的:给这个元素添加 transform-style: preserve-3d 以便让它可以把 3D 效果应用到更深层的节点去。

.parallax-container {
  transform-style: preserve-3d;
}

对于 Mobile Safari 来说,事情变的有点麻烦。对容器元素应用  overflow-y : 技术上这是没问题的,但是这会让滚动元素的移动过于凶猛。解决方案是加上一个  -webkit-overflow-scrolling: touch ,但这个设置会导致 perspective 被抹平,因此我们会得不到任何视差效果。

从一个发展的角度看,这可能算不上什么问题(因为只在旧版本的 Mobile Safari 出现),即使我们无法在每一个浏览器中展现视差效果,但一个应用的功能还是好用的,但我们最好找出一个方案。

position:sticky 来拯救

事实上,我们可以从 position: sticky 中得到一些帮助,这个设置允许元素固定在 <a href="http://www.php.cn/css/css-rwd-viewport.html" target="_blank">viewport</a> 的顶部或者固定在一个滚动元素的父元素。这个属性的文档,就如同任何其它文档一样,又臭又长,但是还是可以找到一些有用信息:

一个固定的“盒子”非常像一个相对定位的盒子,但是位移是通过引用最近的可滚动的祖先来计算的,或者根据 viewport 来计算,如果找不到这样一个祖先的话 -- CSS Positioned Layout Module Level 3

第一眼看上去好像帮助不大,但一个关键点在句中说到如何计算元素的固定位置的那部分:“位移是通过引用最近的可滚动的祖先来计算的”。换句话说,移动固定元素的距离(为了让它看起来是固定在某个元素或者 viewport 上)是在应用其它任何变换之前进行计算的,而不是之后。这就意味着,和我们刚才说的滚动的那个例子很像,如果位移计算的结果是 300px,那么我们就有了一个新的机会去使用 perspective (或者其它任何变换)来在这个 300px 应用到固定元素之前去改变它。

通过给视差元素设置 position: -webkit-sticky,我们可以有效的“翻转”那个由于 -webkit-overflow-scrolling: touch 而产生的“抹平”效果。这样就确保了视差元素引用最近的可滚动的祖先元素,这里就是 .container 。然后,和上文讲的类似,给 .parallax-container 设置一个 perspective 值,这样就改变了计算的滚动位移,创建出了视差效果。

<p>
  </p><p>
    </p><p></p>
  


.container {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.parallax-container {
  perspective: 1px;
}

.parallax-child {
  position: -webkit-sticky;
  top: 0px;
  transform: translate(-2px) scale(3);
}

这样就为 Mobile Safari 恢复了视差效果,真是一个不错的结果。

固定定位的问题

和之前的方案确实还有一个明显区别, position: sticky 改变了视差的机制。固定定位试图固定某个元素在滚动容器顶端,而非固定元素不是。这就意味着固定定位产生的视差和非固定产生的色差是相反的:

  • 使用 position: sticky: 元素离 z=0 越近,它移动的越少

  • 不使用 position: sticky: 元素离 z=0 越近,它移动的越多

如果你还是感到有些抽象的话,可以看一下Robert Flack的这个demo,这个demo展示了在固定定位和非固定定位的条件下,元素是如何有不同的表现的。要看到这个效果的话,你需要 Chrome Canary (写作本文是,版本为56) 或者 Safari 。

High performance parallax animation【translation】

position: sticky 对视差的影响

花式bug和应对

如同任何事情一样,还是有很多的坑需要填。

  • 固定定位的支持是不一致的:当前在 Chrome 中对于这个特性还在开发中,Edge 则完全缺失,FireFox则有绘制的bug。在这种情况下,我们应该增加一点代码来在需要时(这里就是 Mobile Safari )才添加 position: sticky

  • 该效果在 Edge 中完全没有作用。Edge试图在OS级别处理滚动,通常情况下这是个好事。但在这个例子中,这种机制会使得我们无法在滚动时去应用 perspective。为了修复这个问题,我们可以为父元素 设置 `translateZ(0px)``。

  • 页面内容太大了:在决定页面内容有多大时,很多浏览器负责放缩,但很遗憾 Chrome 和 Safari 不负责。所以假如有一个放大 3 倍的变换应用到某个元素时,你可能会看到滚动条出现了,而且一旦出现后,即使之后你恢复了 1:1 的比例,滚动条也不会消失。有一个方法可以避免这种情况:那就是从右下角进行放缩( transform-origin: <a href="http://www.php.cn/wiki/906.html" target="_blank">bottom</a> <a href="http://www.php.cn/wiki/905.html" target="_blank">right</a> )。这种方案背后的原理是它会导致过大的元素进入滚动区域的“负面”(一般是左上),而滚动区域永远不会让你看到“负面”区域。

结论

视差动画如果经过的周全的设计考虑后会是一个非常有趣的效果。而且现在你应该可以了解到我们是可以实现一个高性能的、滚动耦合的、跨浏览器的方案。由于这里面需要一点点数学计算和一些模板化的操作,所以我们封装了一个工具类和例子。

欢迎试用,并提出您的宝贵意见。

The above is the detailed content of High performance parallax animation【translation】. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
如何使用Go语言创建高性能的MySQL更新操作如何使用Go语言创建高性能的MySQL更新操作Jun 17, 2023 pm 01:28 PM

在现代的Web应用程序中,数据库是不可避免的一部分。MySQL是一种常用的关系型数据库管理系统,与许多编程语言兼容。Go语言是一种自带并发性能且易于编写的编程语言。在本文中,我们将介绍如何结合Go语言和MySQL创建高性能的数据库更新操作。连接MySQL数据库在开始之前,您需要确保已经安装并配置了MySQL数据库。我们使用Go语言内置的MySQL驱动程序来连

使用Go语言编写高性能的全文检索引擎使用Go语言编写高性能的全文检索引擎Jun 15, 2023 pm 11:51 PM

随着互联网时代的到来,全文检索引擎越来越受到人们的重视。在无数的网页、文档和数据中,我们需要快速地找到所需的内容,这就需要使用高效的全文检索引擎。Go语言是一种以效率而闻名的编程语言,它的设计目标是提高代码的执行效率和性能。因此,使用Go语言编写全文检索引擎可以大大提高其运行效率和性能。本文将介绍如何使用Go语言编写高性能的全文检索引擎。一、理解全文检索引擎

使用Go语言编写高性能的正则表达式匹配使用Go语言编写高性能的正则表达式匹配Jun 15, 2023 pm 10:56 PM

随着数据量的不断增大,正则表达式匹配成为了程序中常用的操作之一。而在Go语言中,由于其天然的并行ism,以及与底层系统的交互性和高效性,使得Go语言的正则表达式匹配极具优势。那么如何使用Go语言编写高性能的正则表达式匹配呢?一、了解正则表达式在使用正则表达式前,我们首先需要了解正则表达式,了解其基本语法规则以及常用的匹配字符,使我们能够在编写正则表达式时更加

如何使用Go语言创建高性能的MySQL删除操作如何使用Go语言创建高性能的MySQL删除操作Jun 17, 2023 am 11:04 AM

随着数据量的增加,数据库中的删除操作往往会成为程序的瓶颈。为了提高删除操作的性能,可以考虑使用Go语言。Go语言是一种高效的编程语言,能够很好地支持并发和网络编程,同时也有很强的类型检查功能,可靠性和安全性都很高。下面,我们将介绍如何使用Go语言创建高性能的MySQL删除操作。使用Go的并发机制首先,可以使用Go语言的goroutine并发机制来加速删除操作

Swoole与MongoDB的整合:构建高性能的文档数据库系统Swoole与MongoDB的整合:构建高性能的文档数据库系统Jun 14, 2023 am 11:51 AM

在现代企业应用程序开发中,需要处理海量数据和高并发的访问请求。为了满足这些需求,开发人员需要使用高性能的数据库系统,以确保系统的稳定性和可扩展性。本文将介绍如何使用Swoole和MongoDB构建高性能的文档数据库系统。Swoole是一个基于PHP语言开发的异步网络通信框架,它能够大大提高PHP应用程序的性能和并发能力。MongoDB是一种流行的文档数据库,

高性能PHP爬虫的实现方法高性能PHP爬虫的实现方法Jun 13, 2023 pm 03:22 PM

随着互联网的发展,网页中的信息量越来越大,越来越深入,很多人需要从海量的数据中快速地提取出自己需要的信息。此时,爬虫就成了重要的工具之一。本文将介绍如何使用PHP编写高性能的爬虫,以便快速准确地从网络中获取所需的信息。一、了解爬虫基本原理爬虫的基本功能就是模拟浏览器去访问网页,并获取其中的特定信息。它可以模拟用户在网页浏览器中的一系列操作,比如向服务器发送请

使用fiber框架构建高性能的Web应用使用fiber框架构建高性能的Web应用Jun 03, 2023 pm 09:10 PM

随着互联网的快速发展,越来越多的企业和个人开始涉足Web应用的开发领域,而如何构建高性能的Web应用已经成为人们关注的焦点之一。对于Web应用的性能来说,最主要的就是服务器端的处理能力和响应时间。近年来,随着技术的发展,有许多新的框架被提了出来,其中Fiber框架因其高性能和易用性备受青睐。Fiber是一个轻量级的Go语言Web框架,它的主要特点就是高性能和

如何使用Swoole构建高性能的WebSocket服务器如何使用Swoole构建高性能的WebSocket服务器Jun 13, 2023 pm 11:59 PM

近年来,WebSocket技术在互联网开发中越来越流行,尤其是在实时通信、在线游戏、推送消息等领域。而Swoole作为一款高性能、异步的PHP扩展,可以帮助开发者轻松构建高性能的WebSocket服务器。本文将介绍如何使用Swoole搭建一个高性能的WebSocket服务器。一、安装SwooleSwoole支持PHP5.3~7.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.