最新下载
24小时阅读排行榜
- 1 多个XML文件合并及数据映射
- 2 C++ 怎么反转整数 C++ 取模运算反转数字逻辑【代码】
- 3 mysql在Linux中配置时间同步与时区设置
- 4 mysql登录失败如何排查_mysql账号异常解决方法
- 5 php如何判断数组下标是否存在_php存在性检测函数法【教程】
- 6 Golang简单工厂与抽象工厂有什么区别_工厂模式差异说明
- 7 mysql中WHERE子句的使用与多条件查询
- 8 javascript如何创建与操作节点?【教程】
- 9 c++中functor仿函数是什么_c++函数对象用法【进阶】
- 10 mysql并发更新同一行数据怎么办_mysql冲突解决思路
- 11 javascript在哪里运行_如何设置开发环境【教程】
- 12 javascript事件循环是什么_宏任务和微任务如何执行【教程】
- 13 行锁和表锁有什么区别_mysql锁机制解析
- 14 XSLT 3.0的新特性在数据映射中的应用
- 15 如何给XML文件添加数字签名 C#实现XML签名
最新教程
-
- Node.js 教程
- 16108 2025-08-28
-
- CSS3 教程
- 1546518 2025-08-27
-
- Rust 教程
- 23244 2025-08-27
-
- Vue 教程
- 25716 2025-08-22
-
- PostgreSQL 教程
- 22198 2025-08-21
-
- Git 教程
- 9185 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全屏滚动导航切换,需要的朋友可以下载使用
