forked from dohinaf/basic-icecream-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
167 lines (145 loc) · 6.38 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- Corrected value -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - Responsive Ice Cream Website</title>
<!-- Font Awesome CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="preloaderStyle.css">
<link rel="stylesheet" href="style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
<style>
/* Circle styles */
.circle {
height: 24px;
width: 24px;
border-radius: 50%; /* Using 50% for a perfect circle */
background-color: black;
position: fixed;
top: 0;
left: 0;
pointer-events: none;
z-index: 99999999;
}
</style>
</head>
<body>
<!-- Preloader -->
<div id="preloader">
<div class="wrapper">
<div class="box-wrap">
<div class="box one"></div>
<div class="box two"></div>
<div class="box three"></div>
<div class="box four"></div>
<div class="box five"></div>
<div class="box six"></div>
</div>
</div>
</div>
<!-- Circles -->
<div class="circle"></div> <!-- Reduce number of circles if needed -->
<!-- Additional circles can be created dynamically via JS if necessary -->
<!-- Header Starts Here -->
<header class="header">
<a href="#" class="logo">
<img src="https://purepng.com/public/uploads/large/purepng.com-ice-creamice-creamcreamfrozensweet-1411527617895aiuhx.png" alt="Ice Cream Logo">
</a>
<nav class="navbar">
<a href="index.html#home">Home</a>
<a href="index.html#about">About</a>
<a href="index.html#menu">Menu</a>
<a href="offers.html">Offers</a>
<a href="index.html#review">Review</a>
<a href="index.html#blogs">Blogs</a>
<a href="index.html#my-order-btn" class="order">My Order</a>
<a href="contact.html" class="active">Contact Us</a>
</nav>
<div class="icons">
<div class="fas fa-heart" id="wishlist-btn" aria-label="Wishlist"></div>
<div class="fas fa-search" id="search-btn" aria-label="Search"></div>
<div class="fas fa-shopping-cart" id="cart-btn" aria-label="Shopping Cart"></div>
</div>
</header>
<!-- Header Ends Here -->
<div class="visme_d" data-title="Contact Form" data-url="4d6yepek-contact-form" data-domain="forms" data-full-page="false" data-min-height="500px" data-form-id="96782"></div>
<script src="https://static-bundles.visme.co/forms/vismeforms-embed.js"></script>
<!-- Footer Section Starts Here -->
<section class="footer" id="footer">
<div class="share">
<a href="#" class="fab fa-facebook-f" aria-label="Facebook"></a>
<a href="#" class="fab fa-twitter" aria-label="Twitter"></a> <!-- Corrected to use proper class -->
<a href="#" class="fab fa-instagram" aria-label="Instagram"></a>
<a href="#" class="fab fa-linkedin" aria-label="LinkedIn"></a>
<a href="#" class="fab fa-pinterest" aria-label="Pinterest"></a>
</div>
<div class="credit">
<p>created by <span>Dohina</span> | all rights reserved</p>
</div>
</section>
<!-- Footer Section Ends Here -->
<script src="preloader.js"></script>
<!-- JavaScript File -->
<script src="script.js"></script>
<script>
document.addEventListener('DOMContentLoaded', () => {
gsap.from(".contact-form", { opacity: 0, y: 50, duration: 1.5, ease: "power2.out" });
// Animate buttons on hover for scaling effect
const buttons = document.querySelectorAll("button");
buttons.forEach(button => {
button.addEventListener('mouseover', () => {
gsap.to(button, { scale: 1.1, duration: 0.2 });
});
button.addEventListener('mouseout', () => {
gsap.to(button, { scale: 1, duration: 0.2 });
});
});
});
// Coordinates for the cursor
const coords = { x: 0, y: 0 };
const circles = document.querySelectorAll(".circle");
// Colors for the circles
const colors = [
"#ffb56b", "#fdaf69", "#f89d63", "#f59761", "#ef865e", "#ec805d",
"#e36e5c", "#df685c", "#d5585c", "#d1525c", "#c5415d", "#c03b5d",
"#b22c5e", "#ac265e", "#9c155f", "#950f5f", "#830060", "#7c0060",
"#680060", "#60005f", "#48005f", "#3d005e"
];
// Assign colors and initial position to each circle
circles.forEach(function (circle, index) {
circle.x = 0;
circle.y = 0;
circle.style.backgroundColor = colors[index % colors.length];
});
// Update the coordinates when the mouse moves
window.addEventListener("mousemove", function (e) {
coords.x = e.clientX;
coords.y = e.clientY;
});
// Animation function to move the circles
function animateCircles() {
let x = coords.x;
let y = coords.y;
circles.forEach(function (circle, index) {
circle.style.left = x - 12 + "px"; // Center the circle
circle.style.top = y - 12 + "px";
circle.style.transform = `scale(${(circles.length - index) / circles.length})`; // Use transform for scaling
circle.x = x;
circle.y = y;
const nextCircle = circles[index + 1] || circles[0];
x += (nextCircle.x - x) * 0.3;
y += (nextCircle.y - y) * 0.3;
});
requestAnimationFrame(animateCircles);
}
// Start the animation
animateCircles();
</script>
<div class="gtranslate_wrapper"></div>
<script>window.gtranslateSettings = {"default_language":"en","detect_browser_language":true,"wrapper_selector":".gtranslate_wrapper"}</script>
<script src="https://cdn.gtranslate.net/widgets/latest/float.js" defer></script>
</body>
</html>