-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtransparent.html
More file actions
77 lines (76 loc) · 1.77 KB
/
transparent.html
File metadata and controls
77 lines (76 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="maximum-scale=1.0,minimum-scale=1.0,user-scalable=0,width=device-width,initial-scale=1.0"/>
<title>Title</title>
<style>
body,html{
background: #dddddd;
}
*{
margin: 0;
padding: 0;
}
.bar{
position: fixed;
z-index: 10;
right: 0;
left: 0;
height: 44px;
padding-right: 10px;
padding-left: 10px;
border-bottom: 0;
background-color: rgba(255, 255, 255, 0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
p{
height: 40px;
}
</style>
</head>
<body>
<header class="bar transparent">
<div class="title">标题</div>
</header>
<div>
<p>212</p>
<p>212</p>
<p>212</p>
<p>212</p>
<p>212</p>
<p>212</p>
<p>212</p>
<p>212</p>
<p>212</p>
<p>212</p>
<p>212</p>
<p>212</p>
<p>212</p>
<p>212</p>
<p>212</p>
<p>212</p>
<p>212</p>
<p>212</p>
<p>212</p>
<p>212</p>
<p>212</p>
<p>212</p>
<p>212</p>
<p>212</p>
<p>212</p>
<p>212</p>
</div>
</body>
<script src="transparent.js"></script>
<script>
new ZYTransparent({
element: document.querySelector('.transparent'),
top: 0, // 距离顶部高度(到达该高度即触发)
offset: 150, // 滚动透明距离档设定top值后offset也会随着top向下延伸
duration: 15 // 过渡时间
})
</script>
</html>