css for a sidebar menu that folds in and out

后端 未结 4 1048
无人及你
无人及你 2021-02-04 16:17

i\'ve been looking around for tutorials on how to make a simple sidebar menu for a site that can fold in & out by clicking on a home button next to the sidebar menu, much li

4条回答
  •  误落风尘
    2021-02-04 17:07

    Sorry if it is boring, but here is an another example yet. Here we have an horizontaly foldable bar:

    #slideout {
        position: fixed;
    
        top: 0px;
        height: 10px;
        left: 0px;
        right: 0px;
    
        background-color: yellow;
        -webkit-transition-duration: 0.3s;
        -moz-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-duration: 0.3s;
    }
    
    #slideout:hover {
        top: 50px;
        background-color: cyan;
    }
    
    #slideout_inner {
        position: fixed;
    
        top: -50px;
        height: 50px;
        left: 0px;
        right: 0px;
    
        background-color: red;
        -webkit-transition-duration: 0.3s;
        -moz-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        transition-duration: 0.3s;
    }
    
    #slideout:hover #slideout_inner {
        top: 0px;
        left: 0px;
        right: 0px;
        background-color: magenta;
    }
    

    The colors are a litle bite creazy, but this serv as to better illustrate. Cheers!

提交回复
热议问题