-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHtmlPage1.html
33 lines (33 loc) · 1.09 KB
/
HtmlPage1.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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>可滚动的固定背景图效果</title>
<style>
body { padding: 0; margin: 0; }
.d1,.d2,.d3,.d4,.d5,.d6,.d7 {
height: 500px;
border-bottom: 1px solid #ff6a00;
background-repeat: no-repeat;
background-attachment: fixed;
}
.d1 { background-image: url("images/1.jpg"); }
.d2 { background-image: url("images/2.jpg"); }
.d3 { background-image: url("images/3.jpg"); }
.d4 { background-image: url("images/4.jpg"); }
.d5 { background-image: url("images/1.jpg"); }
.d6 { background-image: url("images/2.jpg"); }
.d7 { background-image: url("images/3.jpg"); border-bottom: none; }
</style>
</head>
<body>
<div class="d1"></div>
<div class="d2"></div>
<div class="d3"></div>
<div class="d4"></div>
<div class="d5"></div>
<div class="d6"></div>
<div class="d7"></div>
哈哈是的,什么鬼
</body>
</html>