Canvas动画(PC端 移动端)

一,介绍与需求

1.1,介绍

canvas是HTML5中新增一个HTML5标签与操作canvas的javascript API,它可以实现在网页中完成动态的2D与3D图像技术。<canvas> 标记和 SVG以及 VML 之间的一个重要的不同是,<canvas> 有一个基于 JavaScript 的绘图 API,而 SVG 和 VML 使用一个 XML 文档来描述绘图。SVG 绘图很容易编辑与生成,但功能明显要弱一些。canvas可以完成动画、游戏、图表、图像处理等原来需要Flash完成的一些功能

1.2,需求

实现特殊的动画效果

二,动画实现

以跟随鼠标/手指移动的火为例

第一步:创建Canvas标签

 <canvas id="fire"></canvas>

第二步:获取Canvas标签

  let canvas = document.getElementById('fire');
if (canvas.getContext){
var ctx = canvas.getContext('2d');
// drawing code here
} else {
alert("不支持Canvas")
}

第三步:绘制火花

 var Spark = function (mouse) {

             this.cx = mouse.x;
this.cy = mouse.y;
this.x = rand(this.cx - 40, this.cx + 40);
this.y = rand(this.cy, this.cy + 5);
this.lx = this.x;
this.ly = this.y;
this.vy = rand(1, 3);
this.vx = rand(-4, 4);
this.r = rand(0, 1);
this.life = rand(4, 5);
this.alive = true;
this.c = { h: Math.floor(rand(2, 40)),
s: 100,
l: rand(40, 100),
a: rand(0.8, 0.9) } }
Spark.prototype.update = function () { this.lx = this.x;
this.ly = this.y; this.y -= this.vy;
this.x += this.vx; if (this.x < this.cx)
this.vx += 0.2;
else
this.vx -= 0.2; this.vy += 0.08;
this.life -= 0.1; if (this.life <= 0) { this.c.a -= 0.05; if (this.c.a <= 0)
this.alive = false; } }
Spark.prototype.draw = function (ctx) { ctx.beginPath();
ctx.moveTo(this.lx, this.ly);
ctx.lineTo(this.x, this.y);
ctx.strokeStyle = "hsla( " + this.c.h + ", " + this.c.s + "%, " + this.c.l + "%, " + (this.c.a / 2) + ")";
ctx.lineWidth = this.r * 2;
ctx.lineCap = 'round';
ctx.stroke();
ctx.closePath(); ctx.beginPath();
ctx.moveTo(this.lx, this.ly);
ctx.lineTo(this.x, this.y);
ctx.strokeStyle = "hsla( " + this.c.h + ", " + this.c.s + "%, " + this.c.l + "%, " + this.c.a + ")";
ctx.lineWidth = this.r;
ctx.stroke();
ctx.closePath(); }

第四步:绘制火焰

     var Flame = function (mouse) {

             this.cx = mouse.x;
this.cy = mouse.y;
this.x = rand(this.cx - 25, this.cx + 25);
this.y = rand(this.cy - 5, this.cy + 5);
this.vy = rand(1, 3);
this.vx = rand(-1, 1);
this.r = rand(20, 30);
this.life = rand(3, 6);
this.alive = true;
this.c = { h: Math.floor(rand(2, 40)),
s: 100,
l: rand(80, 100),
a: 0,
ta: rand(0.8, 0.9) } }
Flame.prototype.update = function () { this.y -= this.vy;
this.vy += 0.05; this.x += this.vx; if (this.x < this.cx)
this.vx += 0.1;
else
this.vx -= 0.1; if (this.r > 0)
this.r -= 0.1; if (this.r <= 0)
this.r = 0; this.life -= 0.15; if (this.life <= 0) { this.c.a -= 0.05; if (this.c.a <= 0)
this.alive = false; } else if (this.life > 0 && this.c.a < this.c.ta) { this.c.a += .08; } }
Flame.prototype.draw = function (ctx) { ctx.beginPath();
ctx.arc(this.x, this.y, this.r * 3, 0, 2 * Math.PI);
ctx.fillStyle = "hsla( " + this.c.h + ", " + this.c.s + "%, " + this.c.l + "%, " + (this.c.a / 20) + ")";
ctx.fill(); ctx.beginPath();
ctx.arc(this.x, this.y, this.r, 0, 2 * Math.PI);
ctx.fillStyle = "hsla( " + this.c.h + ", " + this.c.s + "%, " + this.c.l + "%, " + this.c.a + ")";
ctx.fill(); }

第五步:绘制火

     var Fire = function () {

             this.canvas = document.getElementById('fire');
this.ctx = this.canvas.getContext('2d');
this.canvas.height = window.innerHeight;// window.innerHeight
this.canvas.width = window.innerWidth;//window.innerWidth this.aFires = [];
this.aSpark = [];
this.aSpark2 = []; this.mouse = {
x: this.canvas.width * .5,
y: this.canvas.height * .75,
} this.init(); }
Fire.prototype.init = function () {
//跳转语句
if (system.win || system.mac || system.xll) {
this.canvas.addEventListener('mousemove', this.updateMouse.bind(this), false);//PC端
} else {
this.canvas.addEventListener('touchmove', this.updateMouse.bind(this), false);//移动端
} }
Fire.prototype.run = function () { this.update();
this.draw(); if (this.bRuning)
requestAnimationFrame(this.run.bind(this)); }
Fire.prototype.start = function () { this.bRuning = true;
this.run(); }
Fire.prototype.stop = function () { this.bRuning = false; }
Fire.prototype.update = function () { this.aFires.push(new Flame(this.mouse));
this.aSpark.push(new Spark(this.mouse));
this.aSpark2.push(new Spark(this.mouse)); for (var i = this.aFires.length - 1; i >= 0; i--) { if (this.aFires[i].alive)
this.aFires[i].update();
else
this.aFires.splice(i, 1); } for (var i = this.aSpark.length - 1; i >= 0; i--) { if (this.aSpark[i].alive)
this.aSpark[i].update();
else
this.aSpark.splice(i, 1); } for (var i = this.aSpark2.length - 1; i >= 0; i--) { if (this.aSpark2[i].alive)
this.aSpark2[i].update();
else
this.aSpark2.splice(i, 1); } } Fire.prototype.draw = function () { this.ctx.globalCompositeOperation = "source-over";
this.ctx.fillStyle = "rgba( 15, 5, 2, 1 )";
this.ctx.fillRect(0, 0, window.innerWidth, window.innerHeight); this.grd = this.ctx.createRadialGradient(this.mouse.x, this.mouse.y - 200, 200, this.mouse.x, this.mouse.y - 100, 0);
this.grd.addColorStop(0, "rgb( 15, 5, 2 )");
this.grd.addColorStop(1, "rgb( 30, 10, 2 )");
this.ctx.beginPath();
this.ctx.arc(this.mouse.x, this.mouse.y - 100, 200, 0, 2 * Math.PI);
this.ctx.fillStyle = this.grd;
this.ctx.fill(); this.ctx.font = "15em Amatic SC";
this.ctx.textAlign = "center";
this.ctx.strokeStyle = "rgb(50, 20, 0)";
this.ctx.fillStyle = "rgb(120, 10, 0)";
this.ctx.lineWidth = 2;
this.ctx.strokeText("", this.canvas.width / 2, this.canvas.height * .72);
this.ctx.fillText("", this.canvas.width / 2, this.canvas.height * .72); this.ctx.globalCompositeOperation = "overlay";//or lighter or soft-light for (var i = this.aFires.length - 1; i >= 0; i--) { this.aFires[i].draw(this.ctx); } this.ctx.globalCompositeOperation = "soft-light";//"soft-light";//"color-dodge"; for (var i = this.aSpark.length - 1; i >= 0; i--) { if ((i % 2) === 0)
this.aSpark[i].draw(this.ctx); } this.ctx.globalCompositeOperation = "color-dodge";//"soft-light";//"color-dodge"; for (var i = this.aSpark2.length - 1; i >= 0; i--) { this.aSpark2[i].draw(this.ctx); } } Fire.prototype.updateMouse = function (e) {
//跳转语句
if (system.win || system.mac || system.xll) {//PC端
this.mouse.x = e.clientX;
this.mouse.y = e.clientY;
} else {//移动端
e.preventDefault();//阻止默认行为
this.mouse.x = e.changedTouches[0].clientX;
this.mouse.y = e.changedTouches[0].clientY;
} }

第六步:调用

 var oCanvas;
init = function () { oCanvas = new Fire();
oCanvas.start(); }
window.onload = init;

随机数函数

  rand = function (min, max) { return Math.random() * (max - min) + min; };

效果如下:

三,PC端与移动端处理

3.1,判断是PC端还是移动端

     //平台、设备和操作系统
var system = {
win: false,
mac: false,
xll: false
};
//检测平台
var p = navigator.platform;
system.win = p.indexOf("Win") == 0;
system.mac = p.indexOf("Mac") == 0;
system.x11 = (p == "X11") || (p.indexOf("Linux") == 0); //跳转语句
if (system.win || system.mac || system.xll) {
this.canvas.addEventListener('mousemove', this.updateMouse.bind(this), false);//PC端 鼠标移动
} else {
this.canvas.addEventListener('touchmove', this.updateMouse.bind(this), false);//移动端 手指滑动
}

3.2,PC端还是移动端的事件处理

 //跳转语句
if (system.win || system.mac || system.xll) {//PC端
this.mouse.x = e.clientX;
this.mouse.y = e.clientY;
} else {//移动端
e.preventDefault();//阻止默认行为
this.mouse.x = e.changedTouches[0].clientX;
this.mouse.y = e.changedTouches[0].clientY;
}

移动端需禁止缩放

     <meta name="viewport" content="target-densitydpi=320,width=640,user-scalable=no">

Canvas动画(PC端 移动端)的更多相关文章

  1. 把图片画到画布上,适应PC和移动端

    画一张图片到画布上 <canvas id="myCanvas" width="1000px" height="200px" >您 ...

  2. 用react开发一个新闻列表网站(PC和移动端)

    最近在学习react,试着做了一个新闻类的网站,结合ant design框架, 并且可以同时在PC和移动端运行: 主要包含登录和注册组件.头部和脚部组件.新闻块类组件.详情页组件.评论和收藏组件等: ...

  3. JS判断PC和移动端设备

    1.方法一 function IsPC() { var userAgentInfo = navigator.userAgent; var Agents = ["Android", ...

  4. 前端分辨pc和移动端导入不同css

    通过navigator获取浏览器,根据浏览器的不同判断出pc和移动端然后设置不同的css 分辨不同屏幕导入不同的css文件: function loadCSS() { if((navigator.us ...

  5. 判断PC机大小端

    判断PC机大小端 #include<stdio.h> #include<stdlib.h> int main() { short a = 0x0102; char *p = ( ...

  6. 兼顾pc和移动端的textarea字数监控的实现方法

    概述 pc端移动端中文本框监控字数的功能的一种较为简单的实现,考虑到安卓和IOS输入法输入过程中是否触发keyup的差异.利用监听compositionstart判断是否开启了输入法.从而实现体验较为 ...

  7. js判断是pc还是移动端

    //判断pc还是移动端 var isM = function () { var ua = navigator.userAgent; /* navigator.userAgent 浏览器发送的用户代理标 ...

  8. 一个 VUE 组件:实现子元素 scroll 父元素容器不跟随滚动(兼容PC、移动端)

    介绍 我们经常遇到一种情况.当滑动滚动条区域时,子元素滚动条到底部或顶部时就会触发父级滚动条,父级滚动条同理会继续向上触发,直至body容器.这是浏览器默认的滚动行为. 但是很多情况,我们想要子元素滚 ...

  9. bootstrap导航栏PC端移动端之不同样式

    在此之前,我先说我之所以要改变网站PC移动双端不同样式的原因. 首先我的网站用到了bootstrap响应式布局,这是我网站的PC端导航栏: 这是我网站的移动端导航栏,看着就难受: 我用谷歌浏览器F12 ...

随机推荐

  1. IPv6 优于 IPv4 的十大功能

    现在是 9102 年,有一个严重的问题,困扰着资深宅男二狗子.那就是偶像团体没新名了.今年开始,偶像团体 XKB48 已经在无法取更多的新名字了,排列组合的所有方式都已经经过了历史长河的洗礼,除非偶像 ...

  2. JSP之BBS论坛网站的创建

    游戏论坛 工具:myeclipse10.0版本 Tomacat是在外部导入的apache-tomcat-7.0.93 JDK版本为1.6.0_13 字符编码统一为utf-8 一.建立数据库(chat) ...

  3. python菜鸟入门知识

    第二章 入门 2.1 输出 2.1.1print() 输出 print(12+21) print((12+21)*9) print(a) # 注意a不可以加引号 2.2变量 1.变量由字母,数字,下划 ...

  4. nginx 的信号量

    参考文章:https://blog.51cto.com/5660061/2380428 nginx 中的信号量: TERM,INT  快速的结束应用程序 ,等同于 kill -9 pid QUIT 优 ...

  5. 网页缓存相关的HTTP头部信息详解

    前言 之前看完了李智慧老师著的<大型网站技术架构-核心原理与案例分析>这本书,书中多次提起浏览器缓存的话题,恰是这几天生产又遇到了一个与缓存的问题,发现自己书是没少看,正经走心的内容却不多 ...

  6. 【CYH-02】NOIp考砸后虐题赛:数学:题解

    赛后放上.

  7. 「Sqlserver」数据分析师有理由爱Sqlserver之一-好用的插件工具推荐

    在此系列中,笔者为大家带来一些以数据分析师视角去使用Sqlserver的系列文章,希望笔者走过的路能够给后来者带来一些便利. 背景介绍 在数据分析师的角色下,使用数据库更多的是为了从数据库中获取数据, ...

  8. 基于surging 的stage组件设计,谈谈我眼中的微服务。

    一.前言 随着业务的发展,并发量的增多,业务的复杂度越来越大,对于系统架构能力要求越来越高,这时候微服务的设计思想应运而生,但是对于微服务需要引擎进行驱动,这时候基于.NET CORE 的微服务引擎s ...

  9. springboot3(目录结构)

    2.springboot中的目录结构 1.基本信息 - static :保存所有的静态资源,css.js.img - templates :保存所有的模版页面(springboot内嵌tomcat,默 ...

  10. javaee+tomcat新特性,乱码问题

    Tomcat版本问题,servlet乱码问题 我在学习的时候,老师用的是Tomcat1.7版本,在jsp发送get请求的时候,Servlet中还要对get请求传递过来的参数进行解码编码,因为tomca ...