用html+js+css3实现整屏滚动fullpage功能

2023-11-27 10:50

本文主要是介绍用html+js+css3实现整屏滚动fullpage功能,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

最近在jquery库中看到有人封装了整屏滚动(fullpage)的插件,感觉还挺有意思,然后想了一下怎么用原生js 实现。

本文的实例讲述了原生javascript实现的全屏滚动功能。分享供大家参考,具体如下:

1. 计算当前浏览器屏幕高度,每次翻页显示的内容高度即为屏幕高度

2. 对鼠标滚轮事件进行监听,注意滚轮事件的浏览器兼容问题。

效果图如下:

目录

 一、先看看页面布局

html部分

css部分

js部分

二、代码总结


 一、先看看页面布局

html部分

<div class="container"><div class="section section1"><h1>第1屏</h1></div><div class="section section2"><h1>第2屏</h1></div><div class="section section3"><h1>第3屏</h1></div><div class="section section4"><h1>第4屏</h1></div><div class="section section5"><h1>第5屏</h1></div></div><ul class="controls"><li class="active">1</li><li>2</li><li>3</li><li>4</li><li>5</li></ul>

css部分

 <style>* {padding: 0;margin: 0;}html,body {width: 100%;height: 100%;overflow: hidden;}.container {width: 100%;height: 500%;position: absolute;top: 0;transition: all 0.3s ease;}.section1 {background-color: rebeccapurple;background: url(./轮播图/img/01.jpg);}.section2 {background-color: skyblue;background: url(./轮播图/img/02.jpg);}.section3 {background-color: red;background: url(./轮播图/img/03.jpg);}.section4 {background-color: orange;background: url(./轮播图/img/04.jpg);}.section5 {background-color: lightgreen;background: url(./轮播图/img/05.jpg);}.section {width: 100%;height: 20%;display: flex;color: white;justify-content: center;align-items: center;background-size: cover;}.controls {position: absolute;top: 50%;right: 20px;transform: translateY(-50%);list-style: none;}.controls li {width: 50px;height: 50px;font: bold 22px/50px '宋体';text-align: center;background-color: #000;color: white;cursor: pointer;border-radius: 50%;}.controls li+li {margin-top: 5px;}.controls li.active {background-color: #fff;color: red;}</style>

图片可以换成自己喜欢的图片。

js部分

主要核心部分

 //实现滚动效果const container = document.querySelector('.container')const lis = document.querySelectorAll('.controls li') var viewHeight = null //声明页面高度var index = 0; //当前索引var flag = true; //节流开关document.addEventListener('mousewheel', function (e) {e = e || window.eventconsole.log(e);// 获取整屏的高度viewHeight = document.body.clientHeight;if (flag) {  //节流阀flag = falseif (e.wheelDelta > 0) {index--if (index < 0) {index = 0}} else {index++;if (index > lis.length - 1) {index = lis.length - 1}}container.style.top = -index * viewHeight + 'px'changeColor(index)setTimeout(function () {flag = true}, 500)}})

这里是本案例最核心的函数部分,1.给页面绑定鼠标滚轮事件,对鼠标滚轮事件进行监听,

通过事件对象event的wheelDelta属性值来判断鼠标滚动的方向:

 wheelDelta的值为正的话说明鼠标向上滚动,值为负说明鼠标向下滚动。

2.这里使用了一个节流阀防止鼠标滚动过快导致屏幕滚动过快,用了一个开关思想,当鼠标触发滚动事件的时候将开关关闭,用延时定时器将开关打开。

小li颜色切换部分

 //绑定点击事件for (let i = 0; i < lis.length; i++) {lis[i].onclick = function () {viewHeight = document.body.clientHeightindex = ichangeColor(index)container.style.top = -index * viewHeight + 'px'}}//改变小li颜色function changeColor(index) {for (var j = 0; j < lis.length; j++) {lis[j].className = ''}lis[index].className = 'active'}

封装一个改变小li颜色的函数,通过传入索引,改变当前索引的小li类名,然后循环给小li绑定点击事件,这里使用let关键字的特点,具有块级作用域来保存每个小li的索引值,点击后将i值赋值给全局index保存索引。通过每次移动当前索引乘以整个屏幕的高度来实现滚动整个屏幕。

因为考虑兼容性问题,在点击小li或者滚动鼠标滚轮时重新获取一次整个屏幕的高度。防止因实时性出现问题。

二、代码总结

<!DOCTYPE html>
<html lang="en"><head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Document</title><style>* {padding: 0;margin: 0;}html,body {width: 100%;height: 100%;overflow: hidden;}.container {width: 100%;height: 500%;position: absolute;top: 0;transition: all 0.3s ease;}.section1 {background-color: rebeccapurple;background: url(./轮播图/img/01.jpg);}.section2 {background-color: skyblue;background: url(./轮播图/img/02.jpg);}.section3 {background-color: red;background: url(./轮播图/img/03.jpg);}.section4 {background-color: orange;background: url(./轮播图/img/04.jpg);}.section5 {background-color: lightgreen;background: url(./轮播图/img/05.jpg);}.section {width: 100%;height: 20%;display: flex;color: white;justify-content: center;align-items: center;background-size: cover;}.controls {position: absolute;top: 50%;right: 20px;transform: translateY(-50%);list-style: none;}.controls li {width: 50px;height: 50px;font: bold 22px/50px '宋体';text-align: center;background-color: #000;color: white;cursor: pointer;border-radius: 50%;}.controls li+li {margin-top: 5px;}.controls li.active {background-color: #fff;color: red;}</style>
</head><body><div class="container"><div class="section section1"><h1>第1屏</h1></div><div class="section section2"><h1>第2屏</h1></div><div class="section section3"><h1>第3屏</h1></div><div class="section section4"><h1>第4屏</h1></div><div class="section section5"><h1>第5屏</h1></div></div><ul class="controls"><li class="active">1</li><li>2</li><li>3</li><li>4</li><li>5</li></ul><script>//实现滚动效果const container = document.querySelector('.container')const lis = document.querySelectorAll('.controls li') var viewHeight = null //声明页面高度var index = 0; //当前索引var flag = true; //节流开关document.addEventListener('mousewheel', function (e) {e = e || window.eventconsole.log(e);// 获取整屏的高度viewHeight = document.body.clientHeight;if (flag) {  //节流阀flag = falseif (e.wheelDelta > 0) {index--if (index < 0) {index = 0}} else {index++;if (index > lis.length - 1) {index = lis.length - 1}}container.style.top = -index * viewHeight + 'px'changeColor(index)setTimeout(function () {flag = true}, 500)}})//绑定点击事件for (let i = 0; i < lis.length; i++) {lis[i].onclick = function () {viewHeight = document.body.clientHeightindex = ichangeColor(index)container.style.top = -index * viewHeight + 'px'}}//改变小li颜色function changeColor(index) {for (var j = 0; j < lis.length; j++) {lis[j].className = ''}lis[index].className = 'active'}</script>
</body></html>

感谢大家浏览!!!

这篇关于用html+js+css3实现整屏滚动fullpage功能的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/427531

相关文章

Python将博客内容html导出为Markdown格式

《Python将博客内容html导出为Markdown格式》Python将博客内容html导出为Markdown格式,通过博客url地址抓取文章,分析并提取出文章标题和内容,将内容构建成html,再转... 目录一、为什么要搞?二、准备如何搞?三、说搞咱就搞!抓取文章提取内容构建html转存markdown

在React中引入Tailwind CSS的完整指南

《在React中引入TailwindCSS的完整指南》在现代前端开发中,使用UI库可以显著提高开发效率,TailwindCSS是一个功能类优先的CSS框架,本文将详细介绍如何在Reac... 目录前言一、Tailwind css 简介二、创建 React 项目使用 Create React App 创建项目

vue使用docxtemplater导出word

《vue使用docxtemplater导出word》docxtemplater是一种邮件合并工具,以编程方式使用并处理条件、循环,并且可以扩展以插入任何内容,下面我们来看看如何使用docxtempl... 目录docxtemplatervue使用docxtemplater导出word安装常用语法 封装导出方

SpringBoot3实现Gzip压缩优化的技术指南

《SpringBoot3实现Gzip压缩优化的技术指南》随着Web应用的用户量和数据量增加,网络带宽和页面加载速度逐渐成为瓶颈,为了减少数据传输量,提高用户体验,我们可以使用Gzip压缩HTTP响应,... 目录1、简述2、配置2.1 添加依赖2.2 配置 Gzip 压缩3、服务端应用4、前端应用4.1 N

SpringBoot实现数据库读写分离的3种方法小结

《SpringBoot实现数据库读写分离的3种方法小结》为了提高系统的读写性能和可用性,读写分离是一种经典的数据库架构模式,在SpringBoot应用中,有多种方式可以实现数据库读写分离,本文将介绍三... 目录一、数据库读写分离概述二、方案一:基于AbstractRoutingDataSource实现动态

Python FastAPI+Celery+RabbitMQ实现分布式图片水印处理系统

《PythonFastAPI+Celery+RabbitMQ实现分布式图片水印处理系统》这篇文章主要为大家详细介绍了PythonFastAPI如何结合Celery以及RabbitMQ实现简单的分布式... 实现思路FastAPI 服务器Celery 任务队列RabbitMQ 作为消息代理定时任务处理完整

Java枚举类实现Key-Value映射的多种实现方式

《Java枚举类实现Key-Value映射的多种实现方式》在Java开发中,枚举(Enum)是一种特殊的类,本文将详细介绍Java枚举类实现key-value映射的多种方式,有需要的小伙伴可以根据需要... 目录前言一、基础实现方式1.1 为枚举添加属性和构造方法二、http://www.cppcns.co

使用Python实现快速搭建本地HTTP服务器

《使用Python实现快速搭建本地HTTP服务器》:本文主要介绍如何使用Python快速搭建本地HTTP服务器,轻松实现一键HTTP文件共享,同时结合二维码技术,让访问更简单,感兴趣的小伙伴可以了... 目录1. 概述2. 快速搭建 HTTP 文件共享服务2.1 核心思路2.2 代码实现2.3 代码解读3.

MySQL双主搭建+keepalived高可用的实现

《MySQL双主搭建+keepalived高可用的实现》本文主要介绍了MySQL双主搭建+keepalived高可用的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,... 目录一、测试环境准备二、主从搭建1.创建复制用户2.创建复制关系3.开启复制,确认复制是否成功4.同

Java实现文件图片的预览和下载功能

《Java实现文件图片的预览和下载功能》这篇文章主要为大家详细介绍了如何使用Java实现文件图片的预览和下载功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... Java实现文件(图片)的预览和下载 @ApiOperation("访问文件") @GetMapping("