"Dropdown Menu drower Animation"
Bootstrap 4.1.1 Snippet by KelvinMacwan

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">
<div class="row">
<nav>
<div class="vmenu">
<h4><a href="#">Home</a>
</h4>
</div>
<div class="vmenu">
<h4><a href="#">Mobile</a>
<ol id="s3">
<li><a href="#">Nokia</a></li>
<li><a href="#">Panasonic</a></li>
<li><a href="#">Lava</a></li>
</ol>
</h4>
</div>
<div class="vmenu">
<h4><a href="#">Fridge</a>
<ol id="s4">
<li><a href="#">LG</a></li>
<li><a href="#">Samsung</a></li>
<li><a href="#">kelvinator</a></li>
<li><a href="#">whirlpool</a></li>
</ol>
</h4>
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
*
{
margin:0px;
padding:0px;
}
nav
{
width:200px;
font-family:arial,georgia,helvetica;
line-height:1.5;
}
.vmenu h4
{
background:#fff;
width:200px;
color:#fff;
font-size:large;
font-weight:500;
padding:7px 15px;
background:#a90329;
}
.vmenu h4 a
{
text-decoration:none;
color:White;
width:200px;
display:block;
}
.vmenu h4:hover
{
background:#cc002c;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: