如何使用HTML和CSS设计现代侧边栏菜单
当你考虑一个典型网站的布局时,很可能会在主内容区域的左侧或右侧包含一个重要链接的列(用于网页中的各个部分的导航链接)。
这个组件被称为“侧边栏”,通常作为网站上的菜单使用。虽然它经常被使用,但开发者通常将这个元素添加到网站中,以便从一个页面导航到另一个页面,甚至导航到网页的不同部分。
让我们了解一下这个特性,并尝试只使用HTML和CSS创建一个现代的侧边栏。
什么是侧边栏菜单
侧边栏是出现在主内容区域的右侧或左侧的静态栏。这个组件包含了一个网站中的导航链接、小部件或其他必要的链接(如首页、目录或其他部分)。
下面是一个示例,演示如何创建一个简单的侧边栏菜单。这个菜单位于主内容区域的左侧(大多数网站都是这样做的)。
示例
在这个示例中,我们使用CSS栅格将网页分为两个部分。整个网页的15%构成侧边栏菜单,而85%则是主内容。
CSS栅格
它可以让开发者通过设置display: grid将任何元素转换为栅格容器。要添加列,我们可以使用:
grid-template-columns: value value;
value
代表列的宽度。它可以用长度 (像素,厘米,em) 或百分比来表示。
<a>
标签 (锚元素)
它用于在网页内链接到外部页面。它还可以用于链接文档内的内部部分。id 属性唯一地定义了该元素。
<a href= "#"> </a>
属性 href 包含外部页面的URL或文档内部部分的ID。
<!DOCTYPE html>
<html>
<head>
<title> Sidebar menu </title>
<style>
#main-doc {
display: grid;
grid-template-columns: 15% 85%;
grid-template-rows: auto;
grid-template-areas: "advert content";
}
.item1 {
padding: 10px;
}
#head {
font-family: serif !important;
color: #8b0000 !important;
font-weight: 900;
margin: 5px;
padding: 0 5px 5px;
}
.main-section {
font-family: Brush Script MT;
font-size: 20px;
color: #000080;
}
.item2 {
background: linear-gradient(-35deg, #fff000, #ffb6c1, #afeeee);
padding: 6px 8px 6px 16px;
margin: 0
}
.contents {
font-size: 26px !important;
color: grey;
}
.item1 a {
border-radius: 5px;
padding: 6px 16px 6px 16px;
display: block;
}
a:hover {
color: red;
transform: scale(1.1);
}
</style>
</head>
<body>
<main id="main-doc">
<div class="item1">
<nav id="navbar">
<header class="contents">
<strong> Contents </strong>
</header>
<br>
<a href="#background" class="nav-link"> Background </a>
<br>
<hr>
<a href="#romance" class="nav-link"> Romance </a>
<br>
<hr>
<a href="#relations" class="nav-link"> Relations </a>
<br>
<hr>
<a href="#voice_actors" class="nav-link"> Voice Actors </a>
<br>
<hr>
<a href="#costumes" class="nav-link"> Costumes </a>
<br>
<hr>
<a href="#gallery" class="nav-link"> Gallery </a>
<br>
<hr>
</nav>
</div>
<div class="item2">
<header id="head">
<h1> Animation Character </h1>
</header>
<section class="main-section" id="background">
<header>
<h1> Background </h1>
</header>
<hr>
<p> This is placeholder text. This paragraph contains information about the background of the character. </p>
</section>
<section class="main-section" id="romance">
<header>
<h1> Romance <h1>
<hr>
</header>
<p> This paragraph contains text related to the life of the character. </p>
</section>
<section class="main-section" id="relations">
<header>
<h1> Relations </h1>
</header>
<hr>
<ul>
<li> Mother <br>
<p> Text about character's mother </p>
<li> Father <br>
<p> Information about the father. </p>
<li> Sister <br>
<p> Text about character's sister </p>
<li> Friend <br>
<p> Text about friend </p>
</ul>
</section>
<section class="main-section" id="voice_actors">
<header>
<h1> Voice actors
<hr>
</h1>
</header>
<p> This contains information about voice actors in the animation </p>
</section>
<section class="main-section" id="costumes">
<header>
<h1> Costumes
<hr>
</h1>
</header>
<br>
<br>
</section>
</body>
</html>
示例
这里我们将创建一个可切换的侧边栏。我们创建了一个侧边栏,并将其定位于内容区域的左侧。内容区域中有一个按钮,点击该按钮可以折叠所创建的侧边栏。
我们使用了 CSS 过渡属性 来平滑地改变侧边栏的位置。点击按钮时,侧边栏的 位置 从 0 变为 -160px (等于侧边栏的宽度)。换句话说,侧边栏向 左侧 移动了它的宽度的距离。
<!DOCTYPE html>
<html>
<head>
<title> Toggle Sidebar </title>
<style>
body {
margin: 0;
}
.container {
display: flex;
min-height: 90px;
}
.sidebar {
position: relative;
left: 0;
margin-right: 20px;
width: 160px;
background-color: #ccc;
transition: all 0.20s;
}
.sidebar.collapsed {
left: -160px;
margin-right: -150px;
}
</style>
</head>
<body>
<div class="container">
<div class="sidebar" id="sidebar">
<strong> Sidebar menu </strong>
<ul>
<a href="#" class="nav-link">
<li> Link 1 </li>
</a>
<a href="#" class="nav-link">
<li> Link 2 </li>
</a>
<a href="#" class="nav-link">
<li> Link 3 </li>
</a>
<a href="#" class="nav-link">
<li> Link 4 </li>
</a>
</ul>
</div>
<div class="content">
<h2> This is an example. This contains the main content area. </h2>
<br> Click the button below to toggle the sidebar <br>
<br>
<button onclick="document.getElementsByClassName('sidebar')[0].classList.toggle('collapsed')"> toggle Sidebar </button>
</div>
</div>
</body>
</html>
结论
在本文中,我们讨论了网页中的两种侧边栏菜单。其中一种是基本的侧边栏,另一种是可切换的侧边栏。它们都是使用HTML和CSS设计的。