-
Notifications
You must be signed in to change notification settings - Fork 1
/
2_4_bg_fixed_idea.html
50 lines (46 loc) · 1.78 KB
/
2_4_bg_fixed_idea.html
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
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<style>
#lv1,
#lv2,
#lv3,
#lv4,
#lv5,
#lv6,
#lv7 {
background-image: url("assets/123.png");
background-attachment: fixed;
}
.row {
min-height: 300px;
/* background-color: rgba(0, 0, 255, 0.5);*/
}
</style>
</head>
<body>
<div id="lv1" class="container-fluid" style="min-height:600px;">
<div class="row" style="min-height:600px;background-color:rgba(0, 0, 255, 0.05);"></div>
</div>
<div id="lv2" class="container-fluid" style="min-height:600px;">
<div class="row" style="min-height:600px;background-color:rgba(0, 0, 255, 0.1);"></div>
</div>
<div id="lv3" class="container-fluid" style="min-height:600px;">
<div class="row" style="min-height:600px;background-color:rgba(0, 0, 255, 0.3);"></div>
</div>
<div id="lv4" class="container-fluid" style="min-height:600px;">
<div class="row" style="min-height:600px;background-color:rgba(0, 0, 255, 0.5);"></div>
</div>
<div id="lv5" class="container-fluid" style="min-height:600px;">
<div class="row" style="min-height:600px;background-color:rgba(0, 0, 255, 0.65);"></div>
</div>
<div id="lv6" class="container-fluid" style="min-height:600px;">
<div class="row" style="min-height:600px;background-color:rgba(0, 0, 255, 0.8);"></div>
</div>
<div id="lv7" class="container-fluid" style="min-height:600px;">
<div class="row" style="min-height:600px;background-color:rgba(0, 0, 255, 0.9);"></div>
</div>
<div style="height:1000px;background-color:black;"></div>
</body>
</html>