-
Notifications
You must be signed in to change notification settings - Fork 0
/
durian.html
87 lines (71 loc) · 2.72 KB
/
durian.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 lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Management System for employees">
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
<link rel="stylesheet" href="css/style.css">
<title>Durian Website</title>
</head>
<body>
<main>
<div class="menu">
<span class="toggle">
<i></i>
<i></i>
<i></i>
</span>
<div class="menu-content">
<ul>
<li><a href="../index.html#home">HOME</a></li>
<li><a href="../index.html#projects">PROJECTS</a></li>
<li><a href="../index.html#about">ABOUT</a></li>
<li><a href="../index.html#contact">CONTACT</a></li>
</ul>
</div>
</div>
<div class="gallery">
<div class="gallery-container-1">
<img src="images/Durian_site/durian-header.png" alt="landing page">
</div>
<div class="galler-container">
<img src="/images/Durian_site/durian-anatomy.png" alt="profile page">
</div>
<div class="gallery-container">
<img src="/images/Durian_site/durian-variety.png" alt="employee files">
</div>
</div>
<aside>
<h1 class="page-heading">Tools Used:</h1>
<h3>Front-end</h3>
<ul>
<li>HTML5</li>
<li>CSS3</li>
<li>Javascript</li>
<li>GSAP Plugin</li>
</ul>
</aside>
</main>
<article>
<h1 class="page-heading">The Durian Fruit</h1>
<a class="web-link" href="https://durian-parallax.netlify.app/">Go to Website</a>
<p>
This website shows information about the marvelous fruit, Durian. Some of the many varieties were included
in this website.
This is created with the use of HTML, CSS, and GSAP for its animation. It was my first time creating a
website using GSAP to create animation.
It was such a thrill to learn such a plugin. I had hard time manipulating the controls to make it the way I
want it done, it sure was tough. But through reseach and watching a bunch of tutorials, I have made it
through.
</p>
</article>
<script>
// hamburger menu toggle on and off
$('.toggle').on('click', function () {
$('.menu').toggleClass('active');
});
</script>
</body>
</html>