利用CSS也能輕鬆實現超酷炫的轉場動畫了!只要利用最新的 CSS @scroll-timeline 規格即可。以下這篇文章就透過兩個案例來看看利用@scroll-timeline怎麼實現超酷炫的轉場動畫,希望對大家有幫助!
在 WeGame 的 PC 端官網首頁,有著非常多製作精良的基於滾動的動畫效果。
這裡我簡單截取其中 2 個比較有趣的轉場動畫,大家感受感受。轉場動畫1:
轉場動畫2:
#是不是挺有意思的,整個動畫的銜接是基於滾輪的滾動觸發的。我猜測是使用了類似 TweenMaxJS 的動畫庫實作。
當然,這兩處酷炫有趣的轉場動畫,基於最新的 CSS @scroll-timeline 規範,也是可以大致實現的。本文將嘗試使用純 CSS,模擬上述的兩個轉場動畫。 【推薦學習:css影片教學】
當然,關於CSS 最新的CSS @scroll-timeline 規範,如果你還沒詳細了解過,可以先看看我的這篇文章來了來了,它終於來了,動畫殺手鐧@scroll-timeline
圖片的白色部分,不是白色,而是需要透明,能夠透出背後的元素。
當然,我們可以讓 UI 切一張這樣的圖出來,但畢竟太麻煩了。 假設我們只有一個 LOGO 元素: 我們如何能藉助這個 LOGO,切割背景呢?mask。讓我們來試試:
<div></div>
div { background: linear-gradient(-75deg, #715633, #2b2522); }
div { background: linear-gradient(-75deg, #715633, #2b2522); mask: url(WeGame-LOGO图.png); mask-repeat: no-repeat; mask-position: center center; }
我們要的是LOGO 處透明,背景的其他處保留。
怎麼做呢?別慌,這裡可以使用上我們上一篇文章介紹過的-webkit-mask-composite,還不太了解的可以戳這裡看看:
高階切圖技巧!基於單張圖片的任意顏色轉換
div { background: linear-gradient(-75deg, #715633, #2b2522); mask: url(//wegame.gtimg.com/g.55555-r.c4663/wegame-home/sc01-logo.52fe03c4.svg), linear-gradient(#fff, #fff); mask-repeat: no-repeat; mask-position: center center; -webkit-mask-composite: xor; }
@scroll-timeline,我們來模擬一個最基本的動畫效果:
<div></div><div></div><div></div>
.g-scroll { position: relative; width: 100vw; height: 500vh; } .g-wrap { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; overflow: hidden; } .g-container { position: absolute; top: 0; left: 0; width: 100vw; height: 100vh; animation-name: scale; animation-duration: 10s; animation-timeline: box-move; } .g-bg { position: fixed; width: 100vw; height: 100vh; background: url(LOGO背后的图层); } .g-wegame { position: absolute; width: 100vw; height: 100vh; background: linear-gradient(-75deg, #715633, #2b2522); mask: url(//wegame.gtimg.com/g.55555-r.c4663/wegame-home/sc01-logo.52fe03c4.svg), linear-gradient(#fff, #fff); mask-repeat: no-repeat; mask-position: center center; -webkit-mask-composite: xor; } @scroll-timeline box-move { source: selector("#g-scroll"); orientation: "vertical"; } @keyframes scale { 0% { transform: scale(1); } 100% { transform: scale(60); } }
这里,想要看懂上述代码,你必须已经掌握了基本的 CSS @scroll-timeline 语法。其余的内容,简单解释下:
我们在 LOGO 后面的图层,用 .g-bg
使用一张图片表示了场景 2
#g-scroll
用于基于滚动条的滚动,实现滚动动画
.g-wegame
里面就是上述使用 mask
和 mask-composite
实现的图层
好,此时,我们向下滚动动画,就会触发 .g-container
的动画,也就是从 transform: scale(1)
到 transform: scale(60)
,我们来看看效果:
有点那个意思了。但是,这里还缺少了一些细节。
首先我们需要有一个 LOGO,它的透明度从 1 逐渐渐隐到 0,这个比较简单,加完之后,我们看看效果:
离目标又近了一步,但是,仔细观察原效果,我们还少了一层:
在 LOGO 渐隐的过程中,背后的背景不是直接呈现的,而是有一个渐现的过程。所以,完整而言,在动画过程从,一共会有 4 层:
所以,完整的代码,大概是这样的:
<div></div><div></div><div></div> <div></div> <div></div>
.g-scroll { position: relative; width: 100vw; height: 500vh; } .g-wrap { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; overflow: hidden; } .g-container { position: absolute; top: 0; left: 0; width: 100vw; height: 100vh; animation-name: scale; animation-duration: 10s; animation-timeline: box-move; } .g-bg { position: fixed; width: 100vw; height: 100vh; background: url(//背景图片,场景2); } .g-wegame { position: absolute; width: 100vw; height: 100vh; background: linear-gradient(-75deg, #715633, #2b2522); mask: url(//WeGame-Logo.png), linear-gradient(#fff, #fff); mask-repeat: no-repeat; mask-position: center center; -webkit-mask-composite: xor; z-index: 1; } .g-mask { position: aboslute; width: 100vw; height: 100vh; background: linear-gradient(-75deg, #715633, #2b2522); z-index: 2; animation-name: reOpacityChange; animation-duration: 10s; animation-timeline: box-move; animation-function-timing: linear; } .g-logo { position: absolute; background: url(//WeGame-Logo.png); background-repeat: no-repeat; background-position: center center; z-index: 3; animation-name: reOpacityChange; animation-duration: 10s; animation-timeline: box-move; } @scroll-timeline box-move { source: selector("#g-scroll"); orientation: "vertical"; } @keyframes reOpacityChange { 0%, 50% { opacity: 1; } 100% { opacity: 0; } } @keyframes scale { 0% { transform: scale(1); } 100% { transform: scale(60); } }
这样,我们就基本能够还原原效果了:
完整的代码,你可以戳这里:CodePen Demo - WeGame Animation Demo
好,搞定了一个,我们继续来看下一个:
这里,我们也简单拆解下动画:
数字放大,逐渐带出场景 2
场景 2 有一个非常酷炫的光影收缩效果
这里的数字放大与第一个转场动画其实非常类似,就不详细讲了。
我们来看看,在场景 2 这里,光影的收缩效果如何实现。
这里看似负责,但是,其实非常的简单。这里,核心在于这两张图片:
图片素材 1:
注意,这里最为核心的在于,图片中的白色不是白色,是透明的,可以透出背景的内容。
这样,我们只需要在这张图片的背后,放置另外这样一张图片:
想到了吗?没错,就是让这张图片从一个较大的 transform: scale()
值,变化到一个较小的 transform: scale()
值即可!
什么意思呢?看看这张图你就懂了:
知道了解到这一点,整个动画也就比较简单了。当然,这里我们也同样借助了 CSS @scroll-timeline 完成整个动画:
<div></div><div></div> <div></div>30
.g-scroll { position: relative; width: 100vw; height: 500vh; } .g-container { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; overflow: hidden; } .g-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url(//蜂巢图片.png); z-index: 1; } .g-circle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(.5); width: 400px; height: 400px; background: url(//光圈图片.png); animation-name: scale; animation-duration: 10s; animation-timeline: box-move; } .g-word { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 12vw; z-index: 10; color: transparent; background: linear-gradient(#f8a011, #ffd973); background-clip: text; animation-name: scaleWord; animation-duration: 10s; animation-timeline: box-move; } @scroll-timeline box-move { source: selector("#g-scroll"); orientation: "vertical"; } @keyframes scale { 0% { transform: translate(-50%, -50%) scale(10); } 100% { transform: translate(-50%, -50%) scale(.5); } } @keyframes scaleWord { 0% { transform: translate(-50%, -50%) scale(.5); } 100% { transform: translate(calc(-50% - 5000px), -50%) scale(100); } }
整个动画需要看懂,其实还是要有一定的功底的。上效果:
完整的代码,你可以戳这里:CodePen Demo - WeGame Animation Demo
这样,借助强大的 CSS 以及一些有意思的技巧,我们利用纯 CSS 实现了这两个看似非常复杂的转场动画效果,并且,这在之前,是完全不可能使用纯 CSS 实现的。
原文地址:https://segmentfault.com/a/1190000042184211
作者:chokcoco
(學習影片分享:web前端)
以上是利用CSS也能輕鬆實現超酷炫的轉場動畫!的詳細內容。更多資訊請關注PHP中文網其他相關文章!