菜单推入推出效果
代码语言:html
所属分类:菜单导航
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
html,body,.container,.content-wrap {
overflow: hidden;
width: 100%;
height: 100%
padding: 0;
margin: 0;;
}
.container {
background: #373a47
}
.menu-wrap a {
color: #b8b7ad
}
.menu-wrap a:hover,.menu-wrap a:focus {
color: #c94e50
}
.content-wrap {
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
-webkit-transition: -webkit-transform .3s;
transition: transform .3s
}
.content {
position: relative;
background: #b4bad2
}
.content::before {
position: absolute;
top: 0;
left: 0;
z-index: 10;
width: 100%;
height: 100%;
background: rgba(0,0,0,.3);
content: '';
opacity: 0;
-webkit-transition: opacity .3s,-webkit-transform 0s .3s;
transition: opacity .3s,transform 0s .3s;
-webkit-transform: translate3d(100%,0,0);
transform: translate3d(100%,0,0)
}
.menu-button {
position: fixed;
z-index: 1000;
margin: 1em;
padding: 0;
width: 2.5em;
height: 2.25em;
border: none;
text-indent: 2.5em;
font-size: 1.5em;
color: transparent;
background: 0 0
}
.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0