axui布局实现一个自适应响应式简洁的后台管理系统页面效果
代码语言:html
所属分类:布局界面
代码描述:axui布局实现一个自适应响应式简洁的后台管理系统页面效果
代码标签: 一个 自 适应 响应 式 简洁 的 后台 管理系统 页面 效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-touch-fullscreen" content="yes"/>
<meta name="format-detection" content="email=no" />
<meta name="wap-font-scale" content="no" />
<meta name="viewport" content="user-scalable=no, width=device-width" />
<meta content="telephone=no" name="format-detection" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="https://at.alicdn.com/t/font_1551254_sk7y2quxfyq.css" rel="stylesheet" type="text/css" />
<link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/ax.css">
<link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/ax-response.css">
<style>
@charset "utf-8";
/*body*/
.ax-admin {
width: 100%;
height: 100%;
}
/*nav*/
.ax-admin nav {
border-right: 1px solid #ebebeb;
background-color: #fff;
width: calc(220px + 1px);
transition: all 0.2s linear;
position: fixed;
left: 0;
top: 0;
z-index: 3;
}
.ax-admin nav .ax-nav-header {
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
position: relative;
height: 44px;
overflow: hidden;
}
.ax-admin nav .ax-nav-header .ax-logo {
position: relative;
}
.ax-admin nav .ax-nav-header .ax-logo img {
height:30px;
margin-left: 20px;
margin-top:5px;
}
.ax-admin nav .ax-nav-header .ax-close-nav {
color: #333333;
width: 44px;
height: 44px;
line-height: 44px;
text-align: center;
position: absolute;
right: 0;
top: 0;
background-color: #fff;
z-index: 2;
transition: all 0.2s linear;
}
.ax-admin nav .ax-nav-main {
height: 100%;
overflow-x: hidden;
overflow-y: auto;
}
/*menu fold*/
.ax-admin nav.ax-nav-fold {
width: 52px;
}
.ax-admin nav.ax-nav-fold .ax-nav-header .ax-close-nav {
width: 52px;
transform: rotateY(180deg);
}
.ax-admin nav.ax-nav-fold .ax-menu .ax-legend {
margin-right: 14px;
}
.ax-admin nav.ax-nav-fold-all {
width: 0;
}
.ax-admin nav .ax-mask {
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0);
cursor: pointer;
position: absolute;
left: 0;
top: 0;
display: none;
}
.ax-admin nav.ax-nav-fold .ax-mask {
display: block;
}
/*end*/
/*header*/
.ax-admin header {
width: calc(100% - 220px);
background-color: #fff;
border-bottom: 1px solid #ebebeb;
transition: all 0.2s linear;
position: fixed;
left: 220px;
top: 0;
z-index: 2;
}
.ax-admin header + .ax-space-header {
.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0