本文实例为大家分享了JS实现导航栏楼层的具体代码,供大家参考,具体内容如下
知识点
1.多个事件有冲突的时候,需要设置flag判断是什么事件,进而进行后续操作。
2.楼层效果就是判断scrollTop和offsetTop的关系
3.引入工具库工具库
运行效果
导航与界面实现互动
代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> *{margin: 0;padding: 0;list-style: none;border:0;} html, body, ul{width: 100%;height: 100%;} #ul li{ width: 100%; height: 100%; text-align: center; font-size: 30px; /*background-color: red;*/ color: #fff; } #ol{ width: 80px; background-color: #ccc; position: fixed; left: 50px; top: 200px; border: 1px solid #fff; } #ol li{ text-align: center; line-height: 30px; border-bottom: 1px solid #fff; color: #fff; cursor: pointer; } #ol li.current{ background-color: orangered; } </style> </head> <body> <!--导航--> <ol id="ol"> <li class="current">第1层</li> <li>第2层</li> <li>第3层</li> <li>第4层</li> <li>第5层</li> </ol> <!--楼层--> <ul id="ul"> <li>第1层内容</li> <li>第2层内容</li> <li>第3层内容</li> <li>第4层内容</li> <li>第5层内容</li> </ul> <script src="/UploadFiles/2021-04-02/MyTools.js">以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
狼山资源网 Copyright www.pvsay.com
暂无“JS实现导航栏楼层特效”评论...