htmljs实现横向菜单,js实现⽔平滚动菜单导航
项⽬中⽤到了滚动导航,但是默认的滚动条太丑了,只好⽤js⾃⼰模拟了⼀个。凑合⽤可以,不算完美。希望以后有机会再来修饰⼀下。先来看下最终效果:
最终效果
先看html结构:
全单1
全部菜2单
全部3单
菜单4
全菜单
全部5菜单
全6单
全6部菜单
html滚动效果代码全菜7单
全8单
全部5菜单
全6单
全6部菜单
全菜7单
全8单
全9部菜单
全10单
全11部单
菜2单
全菜12单
全32部菜单
说⼀下,末尾我给加了阴影的效果:
.root:before{
display: block;
content: '';
width: 20px;
height:100%;
background: rgba(111,111,111,0);
box-shadow: 2px 2px 32px 2px #999;
position: absolute;
right:-20px;
top:0;
}
其它的样式代码:
*{
margin: 0;
padding:0;
font-family: "Microsoft YaHei UI";
}
#root{
height:60px;
width: 800px;
white-space: nowrap;
overflow: hidden;
-webkit-overflow-scrolling: touch; white-space: nowrap;
position: relative;
border-bottom: 1px solid #eee; padding-right: 20px;
background-color: #f5f5f5;
margin-left: 100px;
margin-top: 50px;
}
.root:before{
display: block;
content: '';
width: 20px;
height:100%;
background: rgba(111,111,111,0); box-shadow: 2px 2px 32px 2px #999; position: absolute;
right:-20px;
top:0;
}
.list{
position: absolute;
left:0;
top:0;
/*width: 100%;*/ /*不能为100%,不然宽度只有⽗容器的宽度,我掉进这个坑了。*/ transition: all 1s;
height:100%;
line-height: 2.5;
}
.on{
color:red;
font-weight: bold;
}
.
off{
color: #000;
font-weight:normal;
}
.list li{
display: inline-block;
padding:10px 20px;
cursor: pointer;
}
下⾯是js的逻辑部分:
var box = ElementById('root'); //外⾯的容器。
var listBox = ElementById('list'); //ul列表。主要是移动它的left值var list = ElementsByTagName('li');//所有列表元素
var width = box.clientWidth /2; //为了判断是左滑还是右滑
var totalWidth = 0;
for(let i=0;i
totalWidth = totalWidth + list[i].offsetWidth; //所有列表元素的总宽度
}
for(let i=0;i
var _offset = totalWidth - box.clientWidth; //右边的偏移量
list[i].addEventListener('click', function (e) {
for(let j=0;j
list[j].className = 'off'; //移除所有元素的样式
}
list[i].className = 'on'; //给点击的元素添加样式
var offset =totalWidth - (Math.abs(listBox.offsetLeft) + box.clientWidth) + 100; //右边的偏移量 = 所有元素宽度之和 - (ul容器的左偏移量 + ⽗容器的宽度)
if(e.pageX > width && offset > 0){ //点击右侧并且右侧的偏移量⼤于0,左滑。
listBox.style.left = (listBox.offsetLeft-200) + 'px';
}else if(e.pageX > width && offset > 200){ //临界位置,,右侧滚动到末尾
listBox.style.left = -_offset + 'px';
}
if(e.pageX < width && listBox.offsetLeft < -200) { //点击左侧并且左侧的偏移量⼩于0,左滑。
listBox.style.left = (listBox.offsetLeft + 200) + 'px';
}else if(e.pageX < width && listBox.offsetLeft < 0){ //临界位置,左侧滚到开始的位置
listBox.style.left = 0
}
});
}
点击如下所⽰:
还有些不完善的地⽅,求各位⼤神指正。
以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持脚本之家。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。