1、div代码
复制代码<div class="nav">
<div class="on"></div>
<ul>
<li>首页</li>
<li>技巧</li>
<li>方法</li>
<li>扩展</li>
</ul>
</div>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
2、css代码
复制代码* {
margin:0;
padding:0;
}
body {
background-color:#b6b3b3;
}
li {
list-style:none;
}
.nav {
width:440px;
height:60px;
margin:100px auto;
border-radius:70px;
position:relative;
}
.nav ul {
display:flex;
align-items:center;
}
.nav ul li {
width:100px;
height:50px;
line-height:50px;
box-sizing:border-box;
border-radius:10px;
text-align:center;
color:#333;
cursor:pointer;
margin: 0 5px
}
.nav .on{
width:100px;
height:50px;
border-radius:10px;
background:#f00;
position:absolute;
left:35px;
top:0;
z-index:-1;
transition:all .3s;
margin: 0 5px;
}
- 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
3、js代码
复制代码$(function() {
var left = 0;
$('.nav ul li').click(function() {
left = this.offsetLeft;
$('.nav .on').css({
left: left - 10 + 'px',
})
})
})
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
span点击事件后实现点击事件禁用(类似按钮disabeld方法)
上面是“juery+css菜单滑动效果”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_2166.html
workflows工作流
半透明的玻璃苹果ComfyUI工作流
一张皮卡丘向观众眨眼的逼真照片ComfyUI工作流
ai图片扩大comfyui工作流
一个白色的咖啡杯,蒸汽从杯子里冒出来
一个可爱的口袋妖怪ComfyUI工作流
一群邪恶的小黄人ComfyUI工作流
五颜六色的球花comfyui工作流
一个红头发明亮眼睛的漂亮女人
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!