HOME ARTICL_可滑动导航条js">
当前位置:   article > 正文

滑动导航栏效果 html+css+js_可滑动导航条js

可滑动导航条js

一.先看效果(完整代码在最后):

在这里插入图片描述
实现并不难,但是初学 js 时拿来练手也是很不错的~

二.实现过程(可一步一步跟着实现):

1. 先定义标签。container就是底层盒子,a标签就是导航栏的各个标签,line就是滑动的下划线。:
<div class="container">
        <a href="#" class="label change">HOME</a>
        <a href="#" class="label">ARTICLE</a>
        <a href="#" class="label">COMMENT</a>
        <a href="#" class="label">INTRODUCE</a>
        <a href="#" class="label">OTHER</a>
        <div class="line"></div>
    </div>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
2. 先定义全局样式和初始化,复制即可:
*{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body{
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: rgb(7, 18, 46);
        }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
3.底层盒子css样式:
.container{
            position: relative;
            width: 700px;
            height: 50px;
            background-color: rgb(30, 45, 112);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: space-around;
            box-shadow:  1.5px 2px 2px rgb(0, 0, 0),
            inset  3px 3px 4px rgba(255,255,255,0.1);      
        }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

position:relative;相对定位
border-radius: 10px; 四个角的弧度。
display: flex;
align-items: center;
justify-content: space-around; flex布局,子元素将平分空间排列。
box-shadow:阴影。

4. 标签的基本样式:
.label{
            width: 100px;
            height: 30px;
            text-align: center;
            line-height: 30px;
            color: rgb(255, 255, 255);
            text-decoration: none; 
            font-size: 14px;
        }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

text-align:center;文字居中
line-height: 30px; 行高
text-decoration: none; 去除默认下划线

5.滑动下划线样式:
.line{
            position: absolute;
            left: 20px;
            bottom: 0;
            height: 3px;
            width: 100px;
            background-color: rgb(66, 104, 207);
            border-radius: 2px;
           
        }
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

position: absolute;
left: 20px;
bottom: 0; 绝对定位的初始位置。
background-color: rgb(66, 104, 207); 背景色。

6. 鼠标经过标签字体颜色改变,同时定义一个change类,哪个标签被选中时添加:
a:hover{
            color: aqua;
        }
       .change{
            color: aqua;          
            border-radius: 10px;
            box-shadow: inset 3px 3px 4px rgb(0, 0, 0),
             1.5px 2px 2px rgba(255,255,255,0.1);      
        }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

box-shadow: inset 3px 3px 4px rgb(0, 0, 0),
1.5px 2px 2px rgba(255,255,255,0.1); 阴影。

7.js部分,看注释:
 // 获取底层盒子
        var container = document.querySelector('.container');
        // 获取标签
        var labels = document.querySelectorAll('.label');
        // 获取下划线
        var line = document.getElementsByClassName('line')[0];
        //变量,记录下划线滑动的初始位置
        var initial = 20; 
        // 变量,记录上一次下划线所在位置
        var star = 20;
        // 定时器名字
        var time;
         // 遍历labels数组
        labels.forEach(function(item){
            // 给每个标签绑定点击事件
            item.onclick = function(){         
                //   遍历labels数组,排他思想,清除掉标签所有的chang类
                labels.forEach(function(temp){
                    temp.classList.remove("change")
                })
                // 给当前获得点击的标签添加change类
                item.classList.add("change");
                // 清除定时器
                clearInterval(time);
                // 给动画函数传值,itemsetLeft为该标签距离底层盒子左侧距离,就是终点值
                animation(item.offsetLeft);
                // 记录下来
                star = item.offsetLeft;
            }
             // 给每个标签绑定鼠标经过事件
            item.onmouseover= function(){       
                // 一样的设置动画    
                clearInterval(time);
                animation(item.offsetLeft);
            }
             // 给每个标签绑定鼠标离开事件
            item.onmouseout= function(){       
                //清除定时器    
                clearInterval(time);
                //下划线又回到起点
                animation(star);
            }
        })
        // 动画
        function animation(goal){
            //动画初始位置为下划线距离左侧位置
           initial = line.offsetLeft;
           // 定时器,实现缓动动画,慢慢滑动的效果
            time = setInterval(function(){
                // 每次自增(goal-initial)/10,我为10,越小滑动越快
                 initial += (goal-initial)/10;
                // 给下划线添加left定位
                 line.style.left = initial +'px';        
                 // 如果滑到目标值,清除定时器
                 if(line.offsetLeft==goal){
                     clearInterval(time);
                 }    
            },30)
        }
       
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60

三.完整代码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body{
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: rgb(7, 18, 46);
        }
        .container{
            position: relative;
            width: 700px;
            height: 50px;
            background-color: rgb(30, 45, 112);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: space-around;
            box-shadow:  1.5px 2px 2px rgb(0, 0, 0),
            inset  3px 3px 4px rgba(255,255,255,0.1);      
        }
        .label{
            width: 100px;
            height: 30px;
            text-align: center;
            line-height: 30px;
            color: rgb(255, 255, 255);
            text-decoration: none; 
            font-size: 14px;
        }
        .line{
            position: absolute;
            left: 20px;
            bottom: 0;
            height: 3px;
            width: 100px;
            background-color: rgb(66, 104, 207);
            border-radius: 2px;
           
        }
        a:hover{
            color: aqua;
        }
       .change{
            color: aqua;          
            border-radius: 10px;
            box-shadow: inset 3px 3px 4px rgb(0, 0, 0),
             1.5px 2px 2px rgba(255,255,255,0.1);      
        }
    </style>
</head>
<body>
    <div class="container">
        <a href="#" class="label change">HOME</a>
        <a href="#" class="label">ARTICLE</a>
        <a href="#" class="label">COMMENT</a>
        <a href="#" class="label">INTRODUCE</a>
        <a href="#" class="label">OTHER</a>
        <div class="line"></div>
    </div>
    <script>
        // 获取底层盒子
        var container = document.querySelector('.container');
        // 获取标签
        var labels = document.querySelectorAll('.label');
        // 获取下划线
        var line = document.getElementsByClassName('line')[0];
        //变量,记录下划线滑动的初始位置
        var initial = 20; 
        // 变量,记录上一次下划线所在位置
        var star = 20;
        // 定时器名字
        var time;
         // 遍历labels数组
        labels.forEach(function(item){
            // 给每个标签绑定点击事件
            item.onclick = function(){         
                //   遍历labels数组,排他思想,清除掉标签所有的chang类
                labels.forEach(function(temp){
                    temp.classList.remove("change")
                })
                // 给当前获得点击的标签添加change类
                item.classList.add("change");
                // 清除定时器
                clearInterval(time);
                // 给动画函数传值,itemsetLeft为该标签距离底层盒子左侧距离,就是终点值
                animation(item.offsetLeft);
                // 记录下来
                star = item.offsetLeft;
            }
             // 给每个标签绑定鼠标经过事件
            item.onmouseover= function(){       
                // 一样的设置动画    
                clearInterval(time);
                animation(item.offsetLeft);
            }
             // 给每个标签绑定鼠标离开事件
            item.onmouseout= function(){       
                //清除定时器    
                clearInterval(time);
                //下划线又回到起点
                animation(star);
            }
        })
        // 动画
        function animation(goal){
            //动画初始位置为下划线距离左侧位置
           initial = line.offsetLeft;
           // 定时器,实现缓动动画,慢慢滑动的效果
            time = setInterval(function(){
                // 每次自增(goal-initial)/10,我为10,越小滑动越快
                 initial += (goal-initial)/10;
                // 给下划线添加left定位
                 line.style.left = initial +'px';        
                 // 如果滑到目标值,清除定时器
                 if(line.offsetLeft==goal){
                     clearInterval(time);
                 }    
            },30)
        }
       
    </script>
</body>
</html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135

总结:

  话说你们觉得 ‘致不灭的你’ 好看吗?我觉的还是挺有意思的 ,应该是慢热型的.(自言自语)

在这里插入图片描述

这是我的b站地址~

其它文章:
环绕倒影加载特效 html+css
气泡浮动背景特效 html+css
简约时钟特效 html+css+js
赛博朋克风格按钮 html+css
仿网易云官网轮播图 html+css+js
水波加载动画 html+css
导航栏滚动渐变效果 html+css+js
书本翻页 html+css
3D立体相册 html+css
霓虹灯绘画板效果 html+css+js
记一些css属性总结(一)
Sass总结笔记
…等等

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/76904
推荐阅读
相关标签
  

闽ICP备14008679号