3、css3 手写nav导航条(互相学习)

效果例图:

1、首先呈现的是html代码:

html 复制代码
<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="./3.css">
    <title>Document</title>
</head>
<body>
    <nav class="navbar">
        <ul class="nav-list">
            <li class="nav-item">
                <a href="#" class="nav-link">home</a></li>
            <li class="nav-item">
                <a href="#" class="nav-link">about</a>
                <ul class="dropdown">
                    <li class="dropdown-item"><a href="#" class="dropdown-link">Our Team</a></li>
                    <li class="dropdown-item"><a href="#" class="dropdown-link">Our Story</a></li>
                    <li class="dropdown-item"><a href="#" class="dropdown-link">Careers</a></li>
                </ul>
            </li>
            <li class="nav-item">
                <a href="#" class="nav-link">Services</a>
                <ul class="dropdown">
                    <li class="dropdown-item"><a href="#" class="dropdown-link">web</a></li>
                    <li class="dropdown-item"><a href="#" class="dropdown-link">html</a></li>
                    <li class="dropdown-item"><a href="#" class="dropdown-link">dockewr</a></li>
                    <li class="dropdown-item"><a href="#" class="dropdown-link">nginx</a></li>
                    <li class="dropdown-item"><a href="#" class="dropdown-link">hahah</a></li>
                </ul>
            </li>
            <li class="nav-item">
                <a href="#" class="nav-link">Contact</a>
            </li>
        </ul>
    </nav>
</body>
</html>

2、其次最关键的css3样式代码:

html 复制代码
body{
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.navbar{
    background-color: #333;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
}
.nav-list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.nav-item{
    position: relative;
}
.nav-link{
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s,transform 0.3s;
    position: relative;
    z-index: 1;
}
.nav-link:hover{
    background-color: #008c8c;
    transform: scale(1.1);
}
.nav-link::after{
    content: "";
    position: absolute;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #f8f400;
    transition: all 0.4s;
    bottom: 0;
    z-index: 1;
}
.nav-link:hover::after{
    left: 0;
    width: 100%;
}

.dropdown{
    display: none;
    /* height: 0px; */
    position: absolute;
    top: calc(100% + 2px);
    left: -5px;
    background-color: #444;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 3px;
    min-width: 150px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: background-color 0.6s ease-in-out;
}
.dropdown-item{
    position: relative;
}
.dropdown-link{
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s;
}
.dropdown-link::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0px;
    height: 2px;
    transition: all 0.4s ease-in-out;
}
.dropdown-link:hover{
    background-color: #008c8c;
}
.dropdown-link:hover::after{
    left: 0;
    width: 100%;
    background-color: #f8f400;
}

.nav-item:hover .dropdown{
    display: block;
    /* height: 300px; */
    opacity: 1;
    transform: translateY(0);
}

总结:CSS太强大了,只是我们现在的学习知识不够,不能够很好的驾驭它,

活到老学到老

相关推荐
逐·風37 分钟前
unity关于自定义渲染、内存管理、性能调优、复杂物理模拟、并行计算以及插件开发
前端·unity·c#
Devil枫1 小时前
Vue 3 单元测试与E2E测试
前端·vue.js·单元测试
尚梦2 小时前
uni-app 封装刘海状态栏(适用小程序, h5, 头条小程序)
前端·小程序·uni-app
GIS程序媛—椰子2 小时前
【Vue 全家桶】6、vue-router 路由(更新中)
前端·vue.js
前端青山3 小时前
Node.js-增强 API 安全性和性能优化
开发语言·前端·javascript·性能优化·前端框架·node.js
毕业设计制作和分享3 小时前
ssm《数据库系统原理》课程平台的设计与实现+vue
前端·数据库·vue.js·oracle·mybatis
从兄4 小时前
vue 使用docx-preview 预览替换文档内的特定变量
javascript·vue.js·ecmascript
清灵xmf5 小时前
在 Vue 中实现与优化轮询技术
前端·javascript·vue·轮询
大佩梨5 小时前
VUE+Vite之环境文件配置及使用环境变量
前端
GDAL5 小时前
npm入门教程1:npm简介
前端·npm·node.js