javascript ES6鼠标划入产生水纹波动效果

2023-10-04 05:10

本文主要是介绍javascript ES6鼠标划入产生水纹波动效果,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

在这里插入图片描述

ES6写了一个水纹效果。还有点计算的问题。直接上代码Copy一下吧。

export  default class Vertex {static BASE_Y = 150;static BASE_R = 10;static  FRICTION = 0.1;//波形抖动后回复到正常状态的速率指数static  DECELERATION = 0.95;static  SPEED_OF_BASE_WAVE = 3;theta = 0;goalY = 0;amp = 0;x;y;constructor(prmID, parent) {this.theta = 360 * prmID / ( parent.NUM - 1);//角度的弧度值。根据NUM值将舞台上分为NUM块,然后将2π的弧度分配给各块,这样舞台上平静的时候正好是一段完整的波形。this.x = prmID * parent.STAGE_W / (parent.NUM - 1);this.y = Vertex.BASE_Y + Vertex.BASE_R * Math.sin(this.theta * Math.PI / 180);}//让波形不断波动的函数,不断更新各点的y坐标updatePos(diffVal) {this.theta += Vertex.SPEED_OF_BASE_WAVE;if (this.theta >= 360) {this.theta -= 360;}this.goalY = Vertex.BASE_Y + Vertex.BASE_R * Math.sin(this.theta * Math.PI / 180);this.goalY += diffVal;this.amp += this.goalY - this.y;this.y += this.amp * Vertex.FRICTION;//y坐标以FRICTION的缓冲速率缓冲到正常状态this.amp *= Vertex.DECELERATION;}
}/*** Created by EricXie on 2019/6/19.*/
import Vertex from "./Vertex.js";
export default class Wave{STAGE_W=800;STAGE_H=300;NUM=800;MOUSE_DIFF_RATIO=1;AUTO_INTERVAL=3000;vertexes=[];mdlPt=[];diffPt=[[],[]];startIndex=[0,0];mouseOldY;mouseNewY;mouseDiff=0;//mouseDiffGoal的缓冲mouseDiffGoal=0;//鼠标拖动后产生的位相差autoTimer;autoDiff=0;//计时器自动生成的位相差mouseY=0;mouseX=0;constructor(){this.canvas=this.createCanvas();this.ctx=this.canvas.getContext("2d");this.init();this.animation();}createCanvas(){if(this.canvas) return this.canvas;let canvas=document.createElement("canvas");Object.assign(canvas.style,{width:"800px",height:"300px",backgroundColor:"#FFFFFF",margin:"auto"});canvas.addEventListener("mousemove",this.mouseHandler.bind(this));return canvas;}mouseHandler(e){this.mouseX=e.clientX;this.mouseY=e.clientY;}appendTo(parent){parent.appendChild(this.canvas);}animation(){requestAnimationFrame(this.animation.bind(this));this.updateMouseDiff();this.updateWave();}init(){for (let i=0; i<this.NUM; i++) {let vertex=new Vertex(i,this);this.vertexes.push(vertex);//中点作成if (i>1) {this.mdlPt.push( {x:(this.vertexes[i-1].x+this.vertexes[i].x)*0.5,y:(this.vertexes[i-1].y+this.vertexes[i].y)*0.5});}//差分this.diffPt[0].push( 0 );this.diffPt[1].push( 0 );}this.mouseNewY=this.mouseY;if (this.mouseNewY<0) {this.mouseNewY=0;} else if (this.mouseNewY > this.STAGE_H) {this.mouseNewY=this.STAGE_H;}this.mouseOldY=this.mouseNewY;setInterval(this.generateAutoWave.bind(this),this.AUTO_INTERVAL);}updateMouseDiff(){this.mouseOldY=this.mouseNewY;this.mouseNewY=this.mouseY;if (this.mouseNewY<0) {this.mouseNewY=0;} else if (this.mouseNewY > this.STAGE_H) {this.mouseNewY=this.STAGE_H;}this.mouseDiffGoal = (this.mouseNewY - this.mouseOldY) * this.MOUSE_DIFF_RATIO;}updateWave(){this.ctx.clearRect(0,0,this.STAGE_W,this.STAGE_H);this.mouseDiff -= (this.mouseDiff - this.mouseDiffGoal)*0.3;this.autoDiff-=this.autoDiff*0.9;//波形自动波动时的速率let mX=this.mouseX;if (mX<0) {mX=0;} else if (mX > this.STAGE_W-2) {mX=this.STAGE_W-2;}this.startIndex[0] = 1+Math.floor( (this.NUM-2) * mX / this.STAGE_W );//startIndex[0]表示波形图上,鼠标拖动的那个点,用Math.floor是//可以取到NUM个点里面x坐标小于当前鼠标x坐标的最大值this.diffPt[0][this.startIndex[0]] -= ( this.diffPt[0][this.startIndex[0]] - this.mouseDiff )*0.99;//自动波this.diffPt[1][this.startIndex[1]] -= ( this.diffPt[1][this.startIndex[1]] - this.autoDiff )*0.99;let d;let i;for ( i=this.startIndex[0]-1; i >=0; i--) {d=this.startIndex[0]-i;if (d>15) {d=15;}this.diffPt[0][i] -= ( this.diffPt[0][i] - this.diffPt[0][i+1] )*(1-0.01*d);}for ( i=this.startIndex[0]+1; i < this.NUM; i++) {d=i-this.startIndex[0];if (d>15) {d=15;}this.diffPt[0][i] -= ( this.diffPt[0][i] - this.diffPt[0][i-1] )*(1-0.01*d);}for ( i=this.startIndex[1]-1; i >=0; i--) {d=this.startIndex[1]-i;if (d>15) {d=15;}this.diffPt[1][i] -= ( this.diffPt[1][i] - this.diffPt[1][i+1] )*(1-0.01*d);}for ( i=this.startIndex[1]+1; i < this.NUM; i++) {d=i-this.startIndex[1];if (d>15) {d=15;}this.diffPt[1][i] -= ( this.diffPt[1][i] - this.diffPt[1][i-1] )*(1-0.01*d);}for ( i=0; i < this.NUM; i++) {this.vertexes[i].updatePos( this.diffPt[0][i]+this.diffPt[1][i]);//更新波形上各点的位相,位相差等于鼠标抖动的和自动产生的,即为diffPt[0][i]+diffPt[1][i]}for ( i=0; i < this.NUM-2; i++) {this.mdlPt[i].y = (this.vertexes[i+1].y + this.vertexes[i+2].y)*0.5;//更新波形图上两点中点的位相,使波形图看起来更流畅}this.drawWave();}drawWave(){this.ctx.fillStyle="#666666";this.ctx.beginPath();this.ctx.moveTo(this.STAGE_W, this.STAGE_H);this.ctx.lineTo(0, this.STAGE_H);this.ctx.lineTo(this.vertexes[0].x, this.vertexes[0].y-50);this.ctx.quadraticCurveTo(this.vertexes[1].x, this.vertexes[1].y-50, this.mdlPt[0].x, this.mdlPt[0].y-50);for (let i=2; i<this.NUM-2; i++) {this.ctx.quadraticCurveTo(this.vertexes[i].x, this.vertexes[i].y-50, this.mdlPt[i-1].x, this.mdlPt[i-1].y-50);}this.ctx.quadraticCurveTo( this.vertexes[this.NUM-2].x, this.vertexes[this.NUM-2].y-50, this.vertexes[this.NUM-1].x, this.vertexes[this.NUM-1].y-50);this.ctx.closePath();this.ctx.fill();}generateAutoWave(){this.autoDiff=200;//自动生成100的位相差this.startIndex[1] = Math.round( Math.random()*(this.NUM-1) );}}
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Title</title>
</head>
<body><script type="module">import Wave from "./js/wave.js";let wave=new Wave();wave.appendTo(document.body);
</script>
</body>
</html>

这篇关于javascript ES6鼠标划入产生水纹波动效果的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

JVM 的类初始化机制

前言 当你在 Java 程序中new对象时,有没有考虑过 JVM 是如何把静态的字节码(byte code)转化为运行时对象的呢,这个问题看似简单,但清楚的同学相信也不会太多,这篇文章首先介绍 JVM 类初始化的机制,然后给出几个易出错的实例来分析,帮助大家更好理解这个知识点。 JVM 将字节码转化为运行时对象分为三个阶段,分别是:loading 、Linking、initialization

Spring Security 基于表达式的权限控制

前言 spring security 3.0已经可以使用spring el表达式来控制授权,允许在表达式中使用复杂的布尔逻辑来控制访问的权限。 常见的表达式 Spring Security可用表达式对象的基类是SecurityExpressionRoot。 表达式描述hasRole([role])用户拥有制定的角色时返回true (Spring security默认会带有ROLE_前缀),去

浅析Spring Security认证过程

类图 为了方便理解Spring Security认证流程,特意画了如下的类图,包含相关的核心认证类 概述 核心验证器 AuthenticationManager 该对象提供了认证方法的入口,接收一个Authentiaton对象作为参数; public interface AuthenticationManager {Authentication authenticate(Authenti

Spring Security--Architecture Overview

1 核心组件 这一节主要介绍一些在Spring Security中常见且核心的Java类,它们之间的依赖,构建起了整个框架。想要理解整个架构,最起码得对这些类眼熟。 1.1 SecurityContextHolder SecurityContextHolder用于存储安全上下文(security context)的信息。当前操作的用户是谁,该用户是否已经被认证,他拥有哪些角色权限…这些都被保

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

Java架构师知识体认识

源码分析 常用设计模式 Proxy代理模式Factory工厂模式Singleton单例模式Delegate委派模式Strategy策略模式Prototype原型模式Template模板模式 Spring5 beans 接口实例化代理Bean操作 Context Ioc容器设计原理及高级特性Aop设计原理Factorybean与Beanfactory Transaction 声明式事物

Java进阶13讲__第12讲_1/2

多线程、线程池 1.  线程概念 1.1  什么是线程 1.2  线程的好处 2.   创建线程的三种方式 注意事项 2.1  继承Thread类 2.1.1 认识  2.1.2  编码实现  package cn.hdc.oop10.Thread;import org.slf4j.Logger;import org.slf4j.LoggerFactory

JAVA智听未来一站式有声阅读平台听书系统小程序源码

智听未来,一站式有声阅读平台听书系统 🌟&nbsp;开篇:遇见未来,从“智听”开始 在这个快节奏的时代,你是否渴望在忙碌的间隙,找到一片属于自己的宁静角落?是否梦想着能随时随地,沉浸在知识的海洋,或是故事的奇幻世界里?今天,就让我带你一起探索“智听未来”——这一站式有声阅读平台听书系统,它正悄悄改变着我们的阅读方式,让未来触手可及! 📚&nbsp;第一站:海量资源,应有尽有 走进“智听

在cscode中通过maven创建java项目

在cscode中创建java项目 可以通过博客完成maven的导入 建立maven项目 使用快捷键 Ctrl + Shift + P 建立一个 Maven 项目 1 Ctrl + Shift + P 打开输入框2 输入 "> java create"3 选择 maven4 选择 No Archetype5 输入 域名6 输入项目名称7 建立一个文件目录存放项目,文件名一般为项目名8 确定