This repository has been archived by the owner on Jun 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
100 lines (93 loc) · 3.53 KB
/
contact.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
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="css/style.css" rel="stylesheet" />
<link href="main.css" rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800,900"
rel="stylesheet"
/>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.0.10/css/all.css"
/>
<title>Contact us|CLOTHEX</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.5.0/css/swiper.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.5.0/css/swiper.min.css"
/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.5.0/js/swiper.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.5.0/js/swiper.min.js"></script>
</head>
<body id="contact">
<header id="underlay">
<img src="images/Group4.png" class="logo invert" />
<img src="images/menu.svg" class="menu-btn invert" id="open-menu" />
</header>
<script>
$(document).ready(function() {
var overlay = document.getElementById("overlay");
var closeMenu = document.getElementById("close-menu");
document
.getElementById("open-menu")
.addEventListener("click", function() {
overlay.classList.add("show-menu");
});
document
.getElementById("close-menu")
.addEventListener("click", function() {
overlay.classList.remove("show-menu");
});
$(window).scroll(function() {
var scroll = $(window).scrollTop();
if (scroll > 100) {
$("#underlay").css("background", "black");
$(".invert").css("filter", "invert(100%)");
} else {
$("#underlay").css("background", "transparent");
$(".invert").css("filter", "invert(0%)");
}
});
});
</script>
<nav id="overlay">
<img src="./images/close.svg" class="close-btn" id="close-menu" />
<ul>
<li>
<a href="index.html">home</a>
<span> main page </span>
</li>
<li>
<a href="all.html">all products</a>
<span> see our other stuff </span>
</li>
<li>
<a href="tech.html">technology</a>
<span> how we make it work </span>
</li>
<li>
<a href="about.html">about us</a>
<span> who we are</span>
</li>
<li>
<a href="contact.html">contact us</a>
<span> get in touch </span>
</li>
</ul>
</nav>
<div class="gridContainerContact">
<div class="gridBox1"><a href="twitter.com">twitter</a><hr></div>
<div class="gridBox1"><a href="instagram.com">instagram</a><hr></div>
<div class="gridBox1"><a href="youtube.com">youtube</a><hr></div>
<div class="gridBox1"><a href="facebook.com">facebook</a><hr></div>
<div class="gridBox1"><a href="mailto:info@clothex.com">email</a><hr></div>
</div>
</body>
</html>