-
Notifications
You must be signed in to change notification settings - Fork 0
/
scrollSections.html
77 lines (62 loc) · 2.15 KB
/
scrollSections.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>Sections scroll</title>
<!-- Bootstrap & Snippet plugin core CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<!-- Custom styles for this template -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="global/styles.css" />
</head>
<body>
<div class="sectionsHolder">
<div class="sections-dots">
<!-- dots holder-->
</div>
<div id="arrows" style="display: none;">
<div class="left-arrow"></div>
<div class="right-arrow"></div>
</div>
<!-- use clr attribute to set the section background color-->
<div class="section" clr="#DD4124">
<div class="heading">
<h1>First section</h1>
</div>
</div>
<div class="section" clr="#6B5B95">
<div class="heading">
<h1>Second section</h1>
</div>
</div>
<div class="section" clr="#88B04B">
<div class="heading">
<h1>Third section</h1>
</div>
</div>
<div class="section" clr="#FF6F61">
<div class="slides-holder">
<div class="slide" clr="#7fe5f0">
<div class="heading">
<h2>Slide One</h2>
</div>
</div>
<div class="slide" clr="#696969">
<div class="heading">
<h2>Slide Two</h2>
</div>
</div>
<div class="slide" clr="#ffd700">
<div class="heading">
<h2>Slide Three</h2>
</div>
</div>
</div>
</div>
</div>
<script src="global/scroll.js"></script>
</body>
</html>