Skip to main content

How to Create Pop up Navigation Button Using HTML & CSS

 

#popup #navigation #button #html #css #foryou #world #happy # website #webdesign #webdeveloper #how to #howto #trending #viral #srilanka #youtube #tiktok #blog  #howtocreate #Javascript #image #imageuploader 


Upgrade your website with a sleek Pop-Up Navigation Button! 🚀 In this quick HTML and CSS tutorial, we'll guide you through the steps to create a stylish, functional navigation feature. Perfect for beginners, our easy-to-follow instructions ensure a seamless process. Enhance your web development skills and make your site stand out with this straightforward guide. 💻✨ Watch, code along, and transform your website's user experience today! 


index.html 


<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <script src="https://kit.fontawesome.com/b186863b7d.js"
        crossorigin="anonymous"></script>
   <link rel="stylesheet" href="style.css">
   <title>Navigation Button</title>
</head>
<body>
   <nav class="menu">
      <input type="checkbox" href="#" class="menu-open"
                name="menu-open" id="menu-open"/>
      <label class="menu-open-button" for="menu-open">
         <span class="lines line-1"></span>
         <span class="lines line-2"></span>
         <span class="lines line-3"></span>
      </label>
      <a href="#" class="menu-item blue"><i class="fa fa-home"></i></a>
      <a href="#" class="menu-item green"><i class="fa-solid fa-location-dot"></i></a>
      <a href="#" class="menu-item red"><i class="fa-solid fa-cart-shopping"></i></a>
      <a href="#" class="menu-item purple"><i class="fa-solid fa-comments"></i></a>
      <a href="#" class="menu-item orange"><i class="fa-solid fa-address-book"></i></a>
      <a href="#" class="menu-item lightblue"><i class="fa fa-youtube"></i></a>
   </nav>
</body>
</html>


style.css 
body{
   padding: 0;
   margin: 0;
   background: #10b39b;
   color: #fff;
   text-align: center;
   font-family: "Poppins", sans-serif;
}
@media screen and (max-width:700px){
   body{
      padding: 170px 0 0 0 ;
      width: 100%;
   }
}
a{
   color: inherit;
}
.menu-item, .menu-open-button{
   background: #fff;
   border-radius: 100%;
   width: 80px;
   height: 80px;
   margin-left: -40px;
   position: absolute;
   color: #fff;
   text-align: center;
   line-height: 80px;
   -webkit-transform: translate3d(0,0,0);
   transform: translate3d(0,0,0);
   -webkit-transition: -webkit-transform ease-out 200ms;
   transition: -webkit-transform ease-out 200ms;
   transition: transform ease-out 200ms, -webkit-transform ease-out 200ms;
}
.menu-open{
   display: none;
}
.lines{
   width: 25px;
   height: 3px;
   background: #596778;
   display: block;
   position: absolute;
   top: 50%;
   left: 50%;
   margin-left: -12.5px;
   margin-top: -1.5px;
   -webkit-transition: -webkit-transform 200ms;
   transition: -webkit-transform 200ms;
   transition: transform 200ms;
   transition: transform 200ms, -webkit-transform 200ms;
}
.line-1{
   -webkit-transform: translate3d(0,-8px,0);
   transform: translate3d(0,-8px,0);
}
.line-2{
   -webkit-transform: translate3d(0,0,0);
   transform: translate3d(0,0,0);
}
.line-3{
   -webkit-transform: translate3d(0,8px,0);
   transform: translate3d(0,8px,0);
}
.menu-open:checked + .menu-open-button .line-1{
   -webkit-transform: translate3d(0,0,0) rotate(45deg);
   transform: translate3d(0,0,0) rotate(45deg);
}
.menu-open:checked + .menu-open-button .line-2{
   -webkit-transform: translate3d(0,0,0) scale(0.1,1);
   transform: translate3d(0,0,0) scale(0.1,1);
}
.menu-open:checked + .menu-open-button .line-3{
   -webkit-transform: translate3d(0,0,0) rotate(-45deg);
   transform: translate3d(0,0,0) rotate(-45deg);
}
.menu{
   margin: auto;
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   width: 80px;
   height: 80px;
   text-align: center;
   box-sizing: border-box;
   font-size: 25px;
}
.menu-item:hover{
   background: black;
   color: rgba(255,255,255,1);
   box-shadow: 0 5px 15px rgba(5,241,21,0.993);
}

.menu-item:nth-child(3){
   -webkit-transition-duration: 180ms;
   transition-duration: 180ms;
}
.menu-item:nth-child(4){
   -webkit-transition-duration: 180ms;
   transition-duration: 180ms;
}
.menu-item:nth-child(5){
   -webkit-transition-duration: 180ms;
   transition-duration: 180ms;
}
.menu-item:nth-child(6){
   -webkit-transition-duration: 180ms;
   transition-duration: 180ms;
}
.menu-item:nth-child(7){
   -webkit-transition-duration: 180ms;
   transition-duration: 180ms;
}
.menu-item:nth-child(8){
   -webkit-transition-duration: 180ms;
   transition-duration: 180ms;
}
.menu-item:nth-child(9){
   -webkit-transition-duration: 180ms;
   transition-duration: 180ms;
}
.menu-open-button{
   z-index: 2;
   -webkit-transition-timing-function: cubic-bezier(0.175,0.885,0.32,1.275);
   transition-timing-function: cubic-bezier(0.175,0.885,0.32,1.275);
   -webkit-transition-duration: 400ms;
   transition-duration: 400ms;
   -webkit-transform: scale(1.1,1.1) translate3d(0,0,0);
   transform: scale(1.1,1.1) translate3d(0,0,0);
   cursor: pointer;
   box-shadow: 3px 3px 0 0 rgba(0,0,0,0.14);
 

}
.menu-open-button:hover{
   -webkit-transform: scale(1.2,1.2) translate3d(0,0,0);
   transform: scale(1.2,1.2) translate3d(0,0,0);
}
.menu-open:checked + .menu-open-button{
   -webkit-transition-timing-function: linear;
   transition-timing-function: linear;
   -webkit-transition-duration: 200ms;
   transition-duration: 200ms;
   -webkit-transform: scale(0.8,0.8) translate3d(0,0,0);
   transform: scale(0.8,0.8)translate3d(0,0,0);
}
.menu-open:checked ~ .menu-item{
   -webkit-transition-timing-function: cubic-bezier(0.935 , 0, 0.34 , 1.33);
   transition-timing-function: cubic-bezier(0.935,0,0.34,1.33);
}
.menu-open:checked ~ .menu-item:nth-child(3){
   transition-duration: 180ms;
   -webkit-transition-duration: 180ms;
   -webkit-transform: translate3d(0.08361px,-104.99997px , 0);
   transform: translate3d(0.08361px,-104.99997px,0);
}
.menu-open:checked ~ .menu-item:nth-child(4){
   transition-duration: 280ms;
   -webkit-transition-duration: 280ms;
   -webkit-transform: translate3d(90.9466px,-52.47586px , 0);
   transform: translate3d(90.9466px,-52.47586px,0);
}
.menu-open:checked ~ .menu-item:nth-child(5){
   transition-duration: 380ms;
   -webkit-transition-duration: 380ms;
   -webkit-transform: translate3d(90.9466px,52.47586px , 0);
   transform: translate3d(90.9466px,52.47586px,0);
}
.menu-open:checked ~ .menu-item:nth-child(6){
   transition-duration: 480ms;
   -webkit-transition-duration: 480ms;
   -webkit-transform: translate3d(0.08361px,104.99997px , 0);
   transform: translate3d(0.08361px,104.99997px,0);
}
.menu-open:checked ~ .menu-item:nth-child(7){
   transition-duration: 580ms;
   -webkit-transition-duration: 580ms;
   -webkit-transform: translate3d(-90.86291px,52.62064px , 0);
   transform: translate3d(-90.86291px,52.62064px ,0);
}
.menu-open:checked ~ .menu-item:nth-child(8){
   transition-duration: 680ms;
   -webkit-transition-duration: 680ms;
   -webkit-transform: translate3d(-91.03006px,-52.33095px , 0);
   transform: translate3d(-91.03006px,-52.33095px,0);
}
.menu-open:checked ~ .menu-item:nth-child(9){
   transition-duration: 780ms;
   -webkit-transition-duration: 780ms;
   -webkit-transform: translate3d(0.25084px,-104.9997px , 0);
   transform: translate3d(0.25084px,-104.9997px px,0);
}
.blue{
   background-color: #669AE1;
   box-shadow: 3px 3px 0 0 rgba(0,0,0,0.14);
   text-shadow: 1px 1px 0 rgba(0,0,0,0.12);
}
.blue:hover{
   color: #669AE1;
   text-shadow: none;
}
.green{
   background-color: #70CC72;
   box-shadow: 3px 3px 0 0 rgba(0,0,0,0.14);
   text-shadow:1px 1px 0 rgba(0,0,0,0.12) ;
}
.green:hover{
   color: #70CC72;
   text-shadow: none;
}
.red{
   background-color: #FE4365;
   box-shadow: 3px 3px 0 0 rgba(0,0,0,0.14);
   text-shadow:1px 1px 0 rgba(0,0,0,0.12) ;

}
.red:hover{
   color: #FE4365;
   text-shadow: none;
}
.purple{
   background-color: #C49CDE;
   box-shadow: 3px 3px 0 0 rgba(0,0,0,0.14);
   text-shadow:1px 1px 0 rgba(0,0,0,0.12) ;

}
.purple:hover{
   color: #C49CDE;
   text-shadow: none;
}
.orange{
   background-color: #FC913A;
   box-shadow: 3px 3px 0 0 rgba(0,0,0,0.14);
   text-shadow:1px 1px 0 rgba(0,0,0,0.12) ;

}
.orange:hover{
   color: #FC913A;
   text-shadow: none;
}
.lightblue{
   background-color: #62C2E4;
   box-shadow: 3px 3px 0 0 rgba(0,0,0,0.14);
   text-shadow:1px 1px 0 rgba(0,0,0,0.12) ;

}
.lightblue:hover{
   color: #62C2E4;
   text-shadow: none;
}

















































Comments

Popular posts from this blog

How To Create a Sign Up Form Using HTML & CSS

    In this tutorial, we'll guide you through the process of creating a standard sign-up form using HTML and CSS. It's a fundamental skill for anyone interested in web development or design. This tutorial is suitable for beginners and provides a solid foundation for understanding how to create a sign-up form. If you're interested in web development or web design, this is a crucial skill to master. If you find this video helpful, please consider liking and subscribing for more web development tutorials. Let's start building your sign-up form together!  1.Create a New Folder 2.Open the Folder in Vs Code  3.Create index.html and style.css Files  4.Create Image Folder and download  Background picture to Image folder 5.Begin Coding  index.html  <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >

How to Create Solar System Using HTML & CSS

  🌟 Explore the Universe: Building a Solar System with HTML and CSS! 🌟 Welcome to another mind-blowing adventure on @Coding With Nexus ! 🚀 Join us as we embark on an interstellar journey to create our very own solar system using nothing but HTML and CSS. 🌌 First Create a New Folder, Then 1.Open the folder in Vs Code 2.Create index.html and style.css Files 3.Begin Coding  index.html <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < link rel = "stylesheet" href = "style.css" >     < title > Solar System </ title > </ head > < body >     < div class = "container" >         < div class = "sun" ></ div >         < div class = "earth" >             < div class = "moon" ></

How to Create Animate Mic Logo

    Embark on a design and coding adventure with our tutorial on creating and animating a microphone logo using HTML and CSS. In this concise yet comprehensive guide, we'll navigate logo design principles, emphasizing simplicity and visual balance. Seamlessly transitioning to animation, we'll bring the mic logo to life, making it dynamic and engaging. What sets this tutorial apart is its accessibility—no complex software, just the power of code.🎙️✨ #logoanimation #designtutorial #webdevelopment Don't forget to like, share, and subscribe for more web development tutorials and tips. If you have any questions or need further assistance, feel free to leave a comment, and we'll be happy to help you out. Happy coding! Like Us On Facebook:    / codingwithnexusofficial   Follow Us On Instagram:    / coding_with_nexus   Follow Us On TikTok:    / coding.with.nexus  index.html <! DOCTYPE html > < html lang = "en" > < head >     < meta