<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Responsive Navigation</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: #f8f9fa;
}
nav {
background-color: #007bff;
color: white;
padding: 10px;
display: flex;
justify-content: space-between;
align-items: center;
}
nav a {
color: white;
text-decoration: none;
margin: 0 15px;
}
nav a:hover {
text-decoration: underline;
}
.menu {
display: none;
flex-direction: column;
position: absolute;
top: 50px;
right: 10px;
background-color: #007bff;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.menu a {
padding: 10px;
margin: 0;
text-align: center;
}
.menu a:hover {
background-color: #0056b3;
}
.menu-toggle {
display: none;
font-size: 1.5em;
cursor: pointer;
}
@media (max-width: 768px) {
.menu-toggle {
display: block;
}
.menu {
display: flex;
}
}
</style>
</head>
<body>
<nav>
<span class="menu-toggle" onclick="toggleMenu()">☰</span>
<div class="menu" id="menu">
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Services</a>
<a href="#">Contact</a>
</div>
</nav>
<script>
function toggleMenu() {
const menu = document.getElementById('menu');
menu.style.display = menu.style.display === 'flex' ? 'none' : 'flex';
}
</script>
</body>
</html>
示例 14: 响应式导航菜单
原创
©著作权归作者所有:来自51CTO博客作者避风塘主的原创作品,请联系作者获取转载授权,否则将追究法律责任
上一篇:示例 15: 简单的天气查询页面
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
响应式开发(一)-----响应式网页设计学习导航
什么是响应式web设计现在开发
响应式 网页设计 响应式web设计 响应式设计 前端框架 -
响应式横向菜单
在线演示 本地下载
响应式横向菜单 it技术