Hello reader's in this blog we are making a css3 dropdown menu with custom html. We dont use <select> element for creating it. I have used list <li> element for making the dropdown of the menu.
HTML:-
In the html file i have created a nested element of list. One is the parent element <li> and other is the child <li> of that parent element. By making a nested element we got the structure of the menu. For the headings i have used <h2> element if you like you can use any other element for making heading.
<ul class="hList">
<li>
<a href="#click" class="menu">
<h2 class="menu-title">animals</h2>
<ul class="menu-dropdown">
<li>cat</li>
<li>dog</li>
<li>horse</li>
<li>cow</li>
<li>pig</li>
</ul>
</a>
</li>
<li>
<a href="#click" class="menu">
<h2 class="menu-title menu-title_2nd">names</h2>
<ul class="menu-dropdown">
<li>Kevin</li>
<li>Jim</li>
<li>Andy</li>
</ul>
</a>
</li>
<li>
<a href="#click" class="menu">
<h2 class="menu-title menu-title_3rd">things</h2>
<ul class="menu-dropdown">
<li>bench</li>
<li>pizza</li>
<li>Honda CB125</li>
<li>space</li>
<li>black matter</li>
<li>apple</li>
<li>philodendron</li>
<li>liver</li>
<li>brass</li>
</ul>
</a>
</li>
<li>
<a href="#click" class="menu">
<h2 class="menu-title menu-title_4th">Movies</h2>
<ul class="menu-dropdown">
<li>Godzilla</li>
<li>Man on Wire</li>
<li>Spirited Away</li>
<li>Interstellar</li>
</ul>
</a>
</li>
</ul>
CSS:-
Inside the css first i have imported the font from google API for the text. After that i have created the style for the other elements. By default all the child element <li> is hidden and the heading is visible only. When we hover on the heading the list will appear with a dropping animation. For the dropping animation i have used the transition property If you need you can use CSS3 animation for making the same effect of dropping menu.
@import url(http://fonts.googleapis.com/css?family=Roboto:400,700);
html {
height: 100%;
background-color: #f8f8f8;
}
body {
overflow: hidden;
height: 100%;
width: 600px;
margin: 0 auto;
background-color: #ffffff;
font-family: 'Roboto', sans-serif;
color: #555555;
}
a {
text-decoration: none;
color: inherit;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
ul li{
list-style: none;
}
.menu {
display: block;
position: relative;
cursor: pointer;
}
.menu-title {
display: block;
width: 150px;
height: 40px;
padding: 12px 0 0;
background: #9dc852;
text-align: center;
color: #ffffff;
font-weight: bold;
text-transform: uppercase;
transition: 0.3s background-color;
}
.menu-title:before {
content: "";
display: block;
height: 0;
border-top: 5px solid #9dc852;
border-left: 75px solid transparent;
border-right: 75px solid transparent;
border-bottom: 0 solid #dddddd;
position: absolute;
top: 100%;
left: 0;
z-index: 101;
transition: 0.2s 0.2s border-top ease-out, 0.3s border-top-color;
}
.menu-title:hover {
background: #8db842;
}
.menu-title:hover:before {
border-top-color: #8db842;
}
.menu:hover > .menu-title:before {
border-top-width: 0;
transition: 0.2s border-top-width ease-in, 0.3s border-top-color;
}
.menu-title:after {
content: "";
display: block;
height: 0;
border-left: 75px solid transparent;
border-right: 75px solid transparent;
border-bottom: 0 solid #ebebeb;
position: absolute;
bottom: 0;
left: 0;
z-index: 101;
transition: 0.2s border-bottom ease-in;
}
.menu:hover > .menu-title:after {
border-bottom-width: 5px;
transition: 0.2s 0.2s border-bottom-width ease-out;
}
.menu-title_2nd {
background: #4e96b3;
}
.menu-title_2nd:hover {
background: #3e86a3;
}
.menu-title_2nd:before {
border-top-color: #4e96b3;
}
.menu-title_2nd:hover:before {
border-top-color: #3e86a3;
}
.menu-title_3rd {
background: #c97676;
}
.menu-title_3rd:hover {
background: #b96666;
}
.menu-title_3rd:before {
border-top-color: #c97676;
}
.menu-title_3rd:hover:before {
border-top-color: #b96666;
}
.menu-title_4th {
background: #dbab58;
}
.menu-title_4th:hover {
background: #cb9b48;
}
.menu-title_4th:before {
border-top-color: #dbab58;
}
.menu-title_4th:hover:before {
border-top-color: #cb9b48;
}
.menu-dropdown {
min-width: 100%;
padding: 15px 0;
position: absolute;
background: #ebebeb;
z-index: 100;
transition: 0.5s padding, 0.5s background;
}
.menu-dropdown:after {
content: "";
display: block;
height: 0;
border-top: 5px solid #ebebeb;
border-left: 75px solid transparent;
border-right: 75px solid transparent;
position: absolute;
top: 100%;
left: 0;
z-index: 101;
transition: 0.5s border-top;
}
.menu:not(:hover) > .menu-dropdown {
padding: 4px 0;
background: #dddddd;
z-index: 99;
}
.menu:not(:hover) > .menu-dropdown:after {
border-top-color: #dddddd;
}
.menu:not(:hover) > .menu-title:after {
border-bottom-color: #dddddd;
}
.menu-dropdown > * {
overflow: hidden;
height: 30px;
padding: 5px 10px;
background: transparent;
white-space: nowrap;
transition: 0.5s height cubic-bezier(0.73, 0.32, 0.34, 1.5), 0.5s padding cubic-bezier(0.73, 0.32, 0.34, 1.5), 0.5s margin cubic-bezier(0.73, 0.32, 0.34, 1.5), 0.5s 0.2s color, 0.2s background-color;
}
.menu-dropdown > *:hover {
background: rgba(0, 0, 0, 0.1);
}
.menu:not(:hover) > .menu-dropdown > * {
visibility: hidden;
height: 0;
padding-top: 0;
padding-bottom: 0;
margin: 0;
color: rgba(25, 25, 25, 0);
transition: 0.5s 0.1s height, 0.5s 0.1s padding, 0.5s 0.1s margin, 0.3s color, 0.6s visibility;
z-index: 99;
}
.hList > * {
float: left;
}
.hList > * + * {
margin-left: 0;
}
Hope this tutorial will help you to create a dropdown menu with CSS3.
0 Comment(s)