GSAP+ScrollSmoother实现图片相册平滑滚动文字遮罩效果代码
代码语言:html
所属分类:加载滚动
代码描述:GSAP+ScrollSmoother实现图片相册平滑滚动文字遮罩效果代码
代码标签: GSAP ScrollSmoother 图片 相册 平滑 滚动 文字 遮罩
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://use.typekit.net/nyc6jda.css">
<style>
body {
margin: 0;
background-color: #1a1721;
color: white;
overscroll-behavior: none;
margin: 0;
padding: 0;
overflow-x: hidden;
}
#wrapper {
overflow: hidden;
position: fixed;
height: 100%;
width: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
#content {
overflow: visible;
width: 100%;
}
.text {
position: fixed;
top: 50vh;
font-family: termina, sans-serif;
font-weight: 900;
font-style: normal;
font-size: 8vw;
text-align: center;
width: 100%;
transform: translateY(-100%);
z-index: 2;
color: white;
.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0