css for a sidebar menu that folds in and out

后端 未结 4 1049
无人及你
无人及你 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 16:57

    Feedback
    Hi Welcome to Stack Overflow

    CSS

    #slideout {
        position: fixed;
        top: 40px;
        left: 0;
        -webkit-transition-duration: 0.3s;
        -moz-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        transition-duration: 0.3s;
    }
    #slideout_inner {
        position: fixed;
        top: 40px;
        left: -250px;
        -webkit-transition-duration: 0.3s;
        -moz-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        transition-duration: 0.3s;
    }
    #slideout:hover {
        left: 250px;
    }
    #slideout:hover #slideout_inner {
        left: 0;
    }
    img {
        width:100px;
        height:100px;
    }
    

    Working Fiddle

    Source Code

    Demo

提交回复
热议问题