五分钟用HTML+CSS设计一个可隐藏的侧边导航栏(sidebar)

准备工作

1、矢量图标网站https://ionicons.com/
2、配色网站https://flatuicolors.com/
3、jQuery-cdn

成品效果截图

展开后:
五分钟用HTML+CSS设计一个可隐藏的侧边导航栏(sidebar)_第1张图片
展开前:
五分钟用HTML+CSS设计一个可隐藏的侧边导航栏(sidebar)_第2张图片

废话不不多说上代码:

html代码:




    
    sidebar
    
    











a标签中的链接可自由更换

css代码

@import "http://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css";

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: sans-serif;
}

.sidebar {
    float: left;
    width: 100px;
    margin-left: -100px;
    height: 100%;
    background-color: #2c3e50;
    overflow: hidden;
    transition: 0.8s all;
}

.side {
    margin-left: 0;
}

/*靠边*/
.sidebar ul {
    margin: 0;
    padding: 0;
}

/*去点*/
.sidebar ul li {
    list-style: none;
}

/*去下划线*/
.sidebar ul li a {
    text-decoration: none;
    color: white;
    height: 80px;
    width: 100%;
    font-size: 40px;
    line-height: 80px;
    text-align: center;
    display: block;
    transition: 0.6s all;
}

.sidebar ul li a:hover {
    background: #95a5a6;
}

.btn {
    float: left;
    padding: 0 10px;
    font-size: 40px;
    text-decoration: none;
    color: #2c3e50;
    font-family: Ionicons;
    cursor: pointer;

}

.btn:before {
    content: '\f20d';
}

.btnc:before {
    content: '\f12a';
}




你可能感兴趣的:(前端)