Friday, October 30, 2020

OFF CANVAS MENU HTML JS

 <!DOCTYPE html>

<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>syncprogramming.com</title>
    <link rel="stylesheet" href="style.css">
    <style>
        .sideNav{
            height100%;
            positionfixed;
            z-index1;
            top0;
            left0;
            background-colorrgb(2069140);
            overflow-xhidden;
            transition0.5s;
            padding-top60px;
            width0;
            
        }

        .sideNav a{
            padding8px 8px 8px 32px;
            text-decorationnone;
            font-size25px;
            colorwhite;
            displayblock;
            transition0.3s;

        }

        .sideNav a:hover{
            coloryellow;
        }

        .sideNav .closeBtn{
            positionabsolute;
            top0;
            right25px;
            font-size36px;
            margin-left50px;
        }

        #main{
            transition: margin-left 0.5s;
            padding16px;
        }
    </style>
    
</head>
<body>
    <nav class="navbar" id="navbar">
        <ul>
            <li style="color: white; font-size: 20px; cursor: pointer;" onclick="openNav()" id="open"><span>&#9776</span></li>
            <li><a href="">Home</a></li>
            <li><a href="">Contact us</a></li>
            <li><a href="">Services</a></li>
            <li><a href="">About us</a></li>
            <li><a href="">Our Clients</a></li>
        </ul>
        
        <div class="searchbar">
            <input type="text" placeholder="SEARCH" style="text-align: center;">
        </div>
    </nav>

    <div class="sideNav" id="mySidenav">
        <a href="#" class="closeBtn" onclick="closeNav()">&times</a>
        <a href="">About</a>
        <a href="">Services</a>
        <a href="">Clients</a>
        <a href="">Contact</a>
    </div>
    
    <div class="main-container" id="main">
        <div class="header">
            <h1>Welcome to Sync Programming</h1>
            <p style="text-align: center;">Start your own Career</p>
        </div>
        <div class="header-button">
            <button class="getStarted">Get Started</button>
        </div>
    </div>

    <script>
        function openNav(){
            document.getElementById('mySidenav').style.width = '250px';
            document.getElementById('main').style.marginLeft = '250px'
            document.getElementById('open').style.display = 'none';
            document.getElementById('navbar').style.marginLeft = '250px'
            document.getElementById('navbar').style.display = 'none'
        }

        function closeNav(){
            document.getElementById('mySidenav').style.width = '0';
            document.getElementById('main').style.marginLeft = '0'
            document.getElementById('open').style.display = 'block';
            document.getElementById('navbar').style.marginLeft = '0'
            document.getElementById('navbar').style.display = 'flex'
        }
    </script>

    
</body>
</html>

No comments:

Post a Comment