-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenuIcon.html
49 lines (48 loc) · 1.19 KB
/
menuIcon.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
<!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">
<title>Menu Icon</title>
</head>
<style>
.container{
display: inline-block;
cursor: pointer;
}
.bar1, .bar2, .bar3{
width: 35px;
height: 5px;
background-color: #333;
margin: 6px 0;
transition: 0.4s;
}
/* Rotate first bar */
.change .bar1{
-webkit-transform: rotate(-45deg) translate(-9px, 6px);
transform: rotate(-45deg) translate(-9px,6px);
}
/* Fade out the second bar */
.change .bar2{
opacity: 0;
}
/* Rotate last bar */
.change .bar3{
-webkit-transform: rotate(45deg) translate(-8px, -8px);
transform: rotate(45deg) translate(-8px,-8px);
}
</style>
<body>
<div class="container" onclick="myFunction(this)">
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
</div>
<script>
function myFunction(x){
x.classList.toggle("change");
}
</script>
</body>
</html>