jquery+css实现自适应响应式网站头部下拉菜单效果代码
代码语言:html
所属分类:菜单导航
代码描述:jquery+css实现自适应响应式网站头部下拉菜单效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
/* Extra */
body {
background: #ccc;
color: #272727;
font-size: 14px;
margin: 0;
}
.logo {
max-width: 200px;
}
.navbar {
align-items: center;
background: #fff;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
display: flex;
flex-direction: row;
font-family: sans-serif;
padding: 10px 50px;
}
.push-left {
margin-left: auto;
}
/* Menu */
.hamburger {
background: transparent;
border: none;
cursor: pointer;
display: none;
outline: none;
height: 30px;
position: relative;
width: 30px;
z-index: 1000;
}
@media screen and (max-width: 768px) {
.hamburger {
display: inline-block;
}
}
.hamburger-line {
background: #272727;
height: 3px;
position: absolute;
left: 0;
transition: all 0.2s ease.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0