这个Website如何实现如此美丽的滚动视图效果?我的意思是正确的滑动"面具"背景图片。
答案 0 :(得分:0)
当可见时,似乎为clip
或wrapper
的宽度设置动画。
可能与Waypoints.js
。
https://github.com/imakewebthings/waypoints
顺利定制宽松和正确的时机。它们还在滚动条上使用parallax
,使其更加平滑。
Verry(verry)verry quikcly:
<div class="wrapper">
<img ...>
</div>
// CSS
.wrapper {
width: 300px;
height: 500px;
overflow: hidden;
}
.wrapper.visible {
width: 500px;
transition: width 1s ease-out;
}
img {
width: 500px;
height: 500px;
}