Create hamburger Icon
<span class="menuLines">☰</span>
//this will create hamburger icon
and for cross icon "×"
target="_blank" to open a href link in a new tab
//functions
<script>
function openNav(){
//on haburger icon
document.getElementById("downNav").style.width="250px";
}
function closeNav(){
//on cross icon
document.getElementById("downNav").style.width="0px";
}
</script>
css:
transition on downNav
.downNav{
transition: all 0.5s;
}
garbage:
script.
function myFunction() {
var x = document.getElementById("myLinks");
if (x.style.display === "block") {
x.style.display = "none";
} else {
x.style.display = "block";
}
script.
function newMenu(){
document.getElementById("downNav").style.height="600px;
}
Comments
Post a Comment