最新下载
24小时阅读排行榜
- 1 LINUX怎么锁定一个用户账户_Linux用户账户锁定方法
- 2 无法删除mysql中数据库如何解决
- 3 前端动态内容加载与URL路由实现指南
- 4 电脑功耗测试方法_电源功率计算指南
- 5 在Java中如何开发简易邮件发送系统_邮件发送系统开发指南
- 6 css边框颜色border-color设置技巧
- 7 php配置如何设置内存限制大小_php配置内存参数调整的详细指南
- 8 拼多多收藏夹无法删除商品怎么办 拼多多收藏管理修复方法
- 9 预防数据表格冻结列越界:理解与应对组件级缺陷
- 10 vscode插件怎么下载javascript_vscodeJavaScript开发增强插件下载方法
- 11 iPhone 11 Pro如何开启FaceTime共享屏幕
- 12 Go语言条件判断:优化if-else结构与switch语句的应用实践
- 13 斑马英语APP如何分享学习成果_斑马英语APP学习成果分享与社交功能使用方法
- 14 在css中行内元素display inline block区别
- 15 动态内容加载与URL深层链接:构建伪单页应用的实践指南
最新教程
-
- Node.js 教程
- 6911 2025-08-28
-
- CSS3 教程
- 990192 2025-08-27
-
- Rust 教程
- 11006 2025-08-27
-
- Vue 教程
- 13231 2025-08-22
-
- PostgreSQL 教程
- 10129 2025-08-21
-
- Git 教程
- 4991 2025-08-21
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>jQuery全屏页面滚动导航切换效果</title>
<style type="text/css">
*{margin:0;padding:0;list-style: none;}
a{text-decoration: none;color: #fff;}
.page{width:100%;height:100%;background: pink;}
.page1{background: orange;}
.page2{background: yellow;}
.page3{background: green;}
.page4{background: cyan;}
.containter{width:100%;height:100%;position:absolute;left:0;top:0;}
body,html{height:100%;overflow: hidden;}
.dian{position:absolute;right:20px;top:50%;text-align: center;}
.dian ul{text-align:center;width:14px;}
.dian li{width:10px;height:10px;border-radius: 50%;background: #fff;text-align: center;margin:0 auto;margin-bottom: 10px;cursor:pointer;}
.dian .da{width:14px;height:14px;}
.nav{width:100%;height:100px;background:purple;position:absolute;left:0;top:0;z-index: 111;}
.nav li{float: left;width:100px;height:30px;margin:35px 30px;background: black;cursor:pointer;border-radius: 5px;text-align: center;line-height: 30px;color:#fff;}
.nav li a{width:100px;height:30px;display:block;}
.nav .bg{background: yellow;color:#000;}
</style>
<script type="text/javascript" src="js/jquery-1.11.2.min.js"></script>
<script type="text/javascript" src="js/jquery.mousewheel.min.js"></script>
<script type="text/javascript">
这是一份jQuery全屏滚动导航切换,需要的朋友可以下载使用


