Skip to content

Commit fb14023

Browse files
readme and fixed burger
1 parent ceaf471 commit fb14023

10 files changed

+109
-4
lines changed

README.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,15 @@
1-
https://www.figma.com/file/nKuSCKtUVmeFaaCemi6RBu/web-design-(Community)-(Copy)?type=design&mode=design&t=K9kPFRzuW0jCJdiM-0
1+
#Project "Adventure".
2+
3+
##Project Features
4+
-Simple yet stylish website
5+
-Using Flexbox to Create a Responsive Layout
6+
-Using SCSS to make working with CSS easier
7+
-Smooth hover effects to improve user experience
8+
-Responsive design for different screen sizes
9+
-Progressbar showing page progress
10+
11+
##Layout
12+
The project used a layout found in the Figma community. [Link to the layout.](<https://www.figma.com/file/nKuSCKtUVmeFaaCemi6RBu/web-design-(Community)-(Copy)?type=design&mode=design&t=K9kPFRzuW0jCJdiM-0>)
13+
14+
##Sreen Shot
15+
![Alt text](/screenshot/mobile.png?raw=true "Mobile")

css/style.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.html

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ <h2>Adventure</h2>
4141
</ul>
4242
<a class="button button__header" href="#">BOOK NOW</a>
4343
</nav>
44+
<button class="button__burger"><span></span></button>
4445
</div>
4546
</div>
4647
</header>

screenshot/127.0.0.1_5500_ (1).png

27.5 MB
Loading

screenshot/mobile.png

2.61 MB
Loading

script.js

+14
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,17 @@ buttonToUp.addEventListener("click", () => {
5151
behavior: "smooth",
5252
});
5353
});
54+
55+
// burger menu
56+
const burgerButton = document.querySelector(".button__burger");
57+
const listMenu = document.querySelector(".header__nav");
58+
59+
burgerButton.addEventListener("click", () => {
60+
burgerButton.classList.toggle("button__burger--active");
61+
62+
if (burgerButton.classList.contains("button__burger--active") === true) {
63+
listMenu.classList.add("opacity");
64+
} else {
65+
listMenu.classList.remove("opacity");
66+
}
67+
});

scss/_burger.scss

Whitespace-only changes.

scss/_button.scss

+59
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,65 @@
118118
}
119119
}
120120
}
121+
122+
&__burger {
123+
display: none;
124+
margin: 10px;
125+
width: 32px;
126+
height: 20px;
127+
position: relative;
128+
z-index: 2;
129+
overflow: hidden;
130+
background-color: transparent;
131+
132+
@media (max-width: 825px) {
133+
display: block;
134+
}
135+
136+
& span,
137+
&::after,
138+
&::before {
139+
position: absolute;
140+
left: 0;
141+
height: 3px;
142+
width: 100%;
143+
transition: all 0.3s ease 0s;
144+
background-color: #ffffff;
145+
border-radius: 20px;
146+
}
147+
148+
&::after,
149+
&::before {
150+
content: "";
151+
}
152+
153+
&::before {
154+
top: 0;
155+
}
156+
157+
&::after {
158+
bottom: 0;
159+
}
160+
161+
& span {
162+
top: 50%;
163+
transform: scale(1) translate(0, -50%);
164+
}
165+
166+
&--active {
167+
& span {
168+
transform: scale(0) translate(0, -50%);
169+
}
170+
&::before {
171+
top: 50%;
172+
transform: rotate(-45deg) translate(0, -50%);
173+
}
174+
&::after {
175+
bottom: 50%;
176+
transform: rotate(45deg) translate(0, 50%);
177+
}
178+
}
179+
}
121180
}
122181

123182
.visible {

scss/_header.scss

+19-1
Original file line numberDiff line numberDiff line change
@@ -89,14 +89,28 @@
8989
}
9090

9191
@media (max-width: 825px) {
92-
display: none;
92+
opacity: 0;
93+
transition: all 0.2s ease-in;
9394
}
9495

9596
ul {
9697
display: flex;
9798
flex-direction: row;
9899
gap: 20px;
99100

101+
@media (max-width: 825px) {
102+
position: absolute;
103+
top: 80px;
104+
left: 0;
105+
flex-direction: column;
106+
width: 100%;
107+
padding: 10px 0 10px 10px;
108+
background: rgba(0, 0, 0, 0.8);
109+
border-left: 12px solid #ffffff;
110+
z-index: 999;
111+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
112+
}
113+
100114
a {
101115
font-weight: 800;
102116
text-transform: uppercase;
@@ -120,3 +134,7 @@
120134
}
121135
}
122136
}
137+
138+
.opacity {
139+
opacity: 1;
140+
}

scss/style.scss

-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,4 @@
88
@import "_discover";
99
@import "_tours";
1010
@import "_scrollbar";
11-
@import "_burger";
1211
@import "_footer";

0 commit comments

Comments
 (0)