"animated menu"
Bootstrap 4.1.1 Snippet by ALIMUL AL RAZY

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
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container">
<nav class="custom-menu">
<figure class="menu-image">
<span class="overlay-image"></span>
<img src="https://images.pexels.com/photos/3489130/pexels-photo-3489130.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260" alt="">
</figure>
<div class="menu-container">
<ul>
<li class="current"><a href="#">Home</a></li>
<li><a href="#">Team & Tools</a></li>
<li><a href="#">Diensten</a></li>
<li><a href="#">Actua</a></li>
<li><a href="#">Links</a></li>
<li><a href="#">Portaalinfo</a></li>
<li><a href="#">Contact</a></li>
<li><br></li>
<li><a href="#"><i class="material-icons">lock</i>Portaal login</a></li>
</ul>
</div>
</nav>
<header class="globNav">
<div class="fluid-container">
<div class="logo left-element">
<a href="#">
<img style="height: 56px" src="https://www.flaticon.com/svg/vstatic/svg/4053/4053319.svg?token=exp=1613512813~hmac=72782d4370306561ff4033da40915084" alt="Logo">
</a>
</div>
<div class="right-element">
<div class="button-container">
<button toggle-menu>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
body{
background-color:#d2dae2;
}
.custom-menu {
position: fixed;
display: flex;
flex-wrap: wrap;
flex-direction: row;
z-index: 95;
height: 100%;
background-color: white;
overflow: hidden;
right: 0;
width: 0;
}
.custom-menu .menu-image {
position: relative;
width: 50%;
overflow: hidden;
}
.custom-menu .menu-image .overlay-image {
position: absolute;
width: 100%;
height: 100%;
right: 0;
background-color: white;
z-index: 5;
}
.custom-menu .menu-image img {
position: relative;
width: 100%;
height: 100%;
object-fit: cover;
transform: scale(1.2);
}
.custom-menu .menu-container {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: