-
Notifications
You must be signed in to change notification settings - Fork 0
/
Parallax website.html
87 lines (75 loc) · 2.13 KB
/
Parallax website.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
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
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<title>Parallax Website</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}
.parallax-container {
position: relative;
overflow: hidden;
width: 100%;
height: 100vh;
}
.parallax-section {
position: absolute;
width: 100%;
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
transform: translateZ(0);
}
.section-1 {
background-image: url('https://via.placeholder.com/1600x800?text=Section+1');
}
.section-2 {
background-image: url('https://via.placeholder.com/1600x800?text=Section+2');
}
.section-3 {
background-image: url('https://via.placeholder.com/1600x800?text=Section+3');
}
.section-content {
text-align: center;
padding: 100px 0;
color: #fff;
}
.footer {
text-align: center;
background-color: #333;
color: #fff;
padding: 20px 0;
}
</style>
</head>
<body>
<div class="parallax-container">
<div class="parallax-section section-1"></div>
<div class="section-content">
<h1>Section 1</h1>
<p>This is the first parallax section.</p>
</div>
</div>
<div class="parallax-container">
<div class="parallax-section section-2"></div>
<div class="section-content">
<h1>Section 2</h1>
<p>This is the second parallax section.</p>
</div>
</div>
<div class="parallax-container">
<div class="parallax-section section-3"></div>
<div class="section-content">
<h1>Section 3</h1>
<p>This is the third parallax section.</p>
</div>
</div>
<div class="footer">
<p>© 2023 ParallaxWebsite.com. All rights reserved.</p>
</div>
</body>
</html>