JSFiddle - React, Tailwind, and code Playground

by deshg

HTML

<div>
<div id="profilebar">
This is the profile header bar
</div>

<div id="maincontent">
<a href="#" class="profileopen">OPEN</a><br>
<a href="#" class="profileclose">CLOSE</a>
</div>
</div>

CSS

#profilebar {
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    background-color: #ffcc00;
    color: #fff;
    z-index:100;
    padding: 20px 0;
    display: none;
}

#maincontent {
    margin-top: 100px;
}

JavaScript

$('.profileopen').click(function () {
        $('#profilebar').slideDown( 'slow' );
        return false;
    });

$('.profileclose').click(function () {
        $('#profilebar').slideUp( 'slow' );
        return false;
    });