This code creates a floating menu that appears on the bottom right corner of the screen. The menu contains a list of links, such as Home, About, Services, and Contact. The CSS styles the menu with a background color, adds some spacing between the items, and provides a hover effect.
I am going to make Float Corner Menu. It will be in the bottom right corner of your website. This will increase the look of your website. There is a round menu in it, on clicking it you get the option of four round link, by clicking on which you can go to another page. I find it very attractive.
Add this jquery link bottom of body for run Jquery:
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
HTML:
<div class="menu_overlay"></div>
<div class="cornerMenu">
<i class="fa fa-bars" aria-hidden="true"></i>
<div class="menu menu1"><i class="fa fa-envelope-o" aria-hidden="true"></i></div>
<div class="menu menu2"><i class="fa fa-envira" aria-hidden="true"></i></div>
<div class="menu menu3"><i class="fa fa-address-card-o" aria-hidden="true"></i></div>
<div class="menu menu4"><i class="fa fa-handshake-o" aria-hidden="true"></i></div>
</div>
<div class="container">
<div class="head">
<span>Website Header</span>
</div>
<div class="content">
<h1>Animated circle Navigation</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed viverra molestie urna a maximus. Ut varius libero bibendum quam varius fringilla.</p>
</div>
</div>
CSS:
body {
margin: 0;
padding: 0;
background: #f0f0f0;
font-family: sans-serif;
}
* {
box-sizing: border-box;
}
.container {
max-width: 1200px;
margin: 0 auto;
height: 100vh;
background: #fff;
}
.head {
background: #4cab80;
height: 50px;
box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.10);
padding: 10px;
text-align: center;
font-size: 24px;
font-weight: 600;
color: #fff;
}
.head a {
padding: 3px 5px;
color: #fff;
font-size: 20px;
margin: 1px 10px;
display: inline-block;
float: left;
}
.head span {
margin-top: 2px;
display: inline-block;
}
.content {
max-width: 750px;
margin: 0 auto;
text-align: center;
margin-top: 10%;
}
.content h1 { color: #4cab80; }
.sidebarMenu p { color: #947234; margin-top: 10%; text-align: center; }
.menu_overlay {
display: none;
position: fixed;
background: rgba(0,0,0,0.4);
top: 0%;
left: 0%;
width: 100%;
height: 100%;
z-index: 1;
}
.menuOpened .menu_overlay {
display: block;
}
body.menuOpened { overflow: hidden; }
.cornerMenu {
width: 50px;
height: 50px;
position: fixed;
right: 25px;
bottom: 25px;
background: #4cab80;
box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.10);
border-radius: 50%;
text-align: center;
line-height: 54px;
color: #fff;
font-size: 22px;
z-index: 6;
cursor: pointer;
}
.menu {
width: 40px;
height: 40px;
position: absolute;
background: #4cab80;
box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.10);
border-radius: 50%;
text-align: center;
line-height: 42px;
color: #fff;
font-size: 16px;
top: 5px;
right: 0;
left: 0;
margin: auto;
transform: translate(0, 0);
opacity: 0;
z-index: 5;
transition: all .4s ease-in-out;
}
.menuOpened .menu {
opacity: 1;
transition: all .4s ease-in-out;
}
.menuOpened .menu1 {
transform: translate(-105px, 20px);
transition-delay: 0s;
}
.menuOpened .menu2 {
transform: translate(-78px, -33px);
transition-delay: .05s;
}
.menuOpened .menu3 {
transform: translate(-38px, -76px);
transition-delay: .1s;
}
.menuOpened .menu4 {
transform: translate(18px, -99px);
transition-delay: .15s;
}
Java Script:
$(document).ready(function(){
$(".openMenu, .cornerMenu").click(function(){
$("body").toggleClass("menuOpened");
});
$(".menu_overlay").click(function(){
$("body").removeClass("menuOpened");
});
});