最新下载
24小时阅读排行榜
- 1 javascript如何实现类型判断_有哪些注意事项【教程】
- 2 c++中variadic template变参模板怎么写_c++模板递归展开【深度】
- 3 ios怎样让html5获取定位权限_ios调用html5定位设置【步骤】
- 4 html5布局代码flex与float区别_html5布局代码两者差异对比【解析】
- 5 trae配置php和nginx搭配怎么弄_traenginxphp整合教程【步骤】
- 6 如何使用Golang优化并发数据访问_Golang 并发性能管理方法
- 7 XML上传后如何存入图形数据库(Neo4j)
- 8 MAUI如何实现振动效果 MAUI Vibrate功能使用
- 9 MAUI怎么修改应用图标和启动页 MAUI AppIcon设置方法
- 10 mysql并发下库存超卖怎么避免_mysql业务并发控制
- 11 SQL 如何监控 max_connections 被占满的告警与临时扩容
- 12 c# 如何自定义一个 control
- 13 javascript如何理解事件循环_宏任务和微任务有何区别【教程】
- 14 php实时输出模板引擎兼容吗_php实时输出模板适配【步骤】
- 15 Go反射中Elem的作用 Golang反射指针与切片解析
最新教程
-
- Node.js 教程
- 16172 2025-08-28
-
- CSS3 教程
- 1546685 2025-08-27
-
- Rust 教程
- 23305 2025-08-27
-
- Vue 教程
- 25772 2025-08-22
-
- PostgreSQL 教程
- 22253 2025-08-21
-
- Git 教程
- 9231 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全屏滚动导航切换,需要的朋友可以下载使用
