How To Convert Slide From Left Curtain Menu , To Slide In From Right
The Problem We need a curtain to animate from right hand side of screen , inwards to the left. I found an almost PERFECT example of this ( except this only comes in from the left,
Solution 1:
All you need is instead of left: 0
in .overlay
turn it into right: 0
to allow it to open from right hand side. Also, in the JavaScript
part change the width
to 25%
not 100%
and you're done !
Here's a demo (the old comments are removed to allow the new comments to be distinguishable) :
functionopenNav() {
document.getElementById("myNav").style.width = "25%"; /** from 100% to 25% **/
}
functioncloseNav() {
document.getElementById("myNav").style.width = "0";
}
.overlay {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
right: 0;
/** it was left: 0, now it opens from right **/top: 0;
background-color: rgb(0, 0, 0);
background-color: rgba(0, 0, 0, 0.9);
overflow-x: hidden;
transition: 0.5s;
}
.overlay-content {
position: relative;
top: 25%;
width: 100%;
text-align: center;
margin-top: 30px;
}
.overlaya {
padding: 8px;
text-decoration: none;
font-size: 36px;
color: #818181;
display: block;
transition: 0.3s;
}
.overlaya:hover,
.overlaya:focus {
color: #f1f1f1;
}
.overlay.closebtn {
position: absolute;
top: 20px;
right: 45px;
font-size: 60px;
}
@media screen and (max-height: 450px) {
.overlaya {
font-size: 20px
}
.overlay.closebtn {
font-size: 40px;
top: 15px;
right: 35px;
}
}
<divid="myNav"class="overlay"><ahref="javascript:void(0)"class="closebtn"onclick="closeNav()">×</a><divclass="overlay-content"><ahref="#">About</a><ahref="#">Services</a><ahref="#">Clients</a><ahref="#">Contact</a></div></div><spanonclick="openNav()">open</span>
Post a Comment for "How To Convert Slide From Left Curtain Menu , To Slide In From Right"