服务器之家:专注于服务器技术及软件下载分享
分类导航

node.js|vue.js|jquery|angularjs|React|json|js教程|

服务器之家 - 编程语言 - JavaScript - js教程 - html+css+js实现canvas跟随鼠标的小圆特效源码

html+css+js实现canvas跟随鼠标的小圆特效源码

2022-02-17 19:37北极光之夜。 js教程

这篇文章主要介绍了html+css+js实现canvas跟随鼠标的小圆特效源码,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

效果(源码在最后):

html+css+js实现canvas跟随鼠标的小圆特效源码

实现:

1.定义标签:

?
1
2
3
4
<h1>北极光之夜</h1>
<canvas id="draw" style=" position: fixed; display: block;"
           当前浏览器不支持Canvas,请更换浏览器后再试
</canvas>

2. 文字的基本样式:

?
1
2
3
4
5
6
7
8
9
h1{
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%,-50%);
   font-size: 5em;
   font-family: 'fangsong';
   color: rgb(38, 205, 247);
  }

top: 50%;
left: 50%;
transform: translate(-50%,-50%); 居中对齐
3. js部分,详细看注释 :

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<script>
  /* 首先获取canvas画布 */
  var canvas = document.querySelector("#draw");
  var yuan = canvas.getContext("2d"); 
  /* 绑定窗口大小发生改变事件,让canvas随时铺满浏览器可视区 */
   window.onresize=resizeCanvas;
  function resizeCanvas(){
   canvas.width=window.innerWidth;
   canvas.height=window.innerHeight;
  }
  resizeCanvas();
 
  /* 定义数组,存下面触发移动事件时产生的小圆 */
  var arr = [];
  
  /* 绘制小圆形的方法,x与y是初始位置,r是圆半径 */
  function circle (x,y,r){
   this.x=x;
   this.y=y;
   this.r=r;
   /* 得一个随机颜色 */
   this.color = `rgb(${255*Math.random()},${255*Math.random()},${255*Math.random()})`
   /* 圆的移动方向,random函数为随机返回一个0.0到1.0的数,x可得随机正负数,y为随机正数 */
   this.xZou = parseInt(Math.random()*10-5);
   this.yZou = parseInt(Math.random()*10); 
   /* 向arr数组末尾添加这个元素 */
   arr.push(this);
  }
 
  /* 更新圆形的方法 */
   circle.prototype.updated = function() {
    /* x和y增加,呈现圆形一直走 */
   this.x = this.x + this.xZou ;
   this.y = this.y + this.yZou ;
   /* 半径慢慢减少 */
   this.r = this.r - 0.1 ;
   /* 当半径小于1清除这个圆 */
   if(this.r<0){
    this.remove();
   }
   }
   /* 删除小圆的函数 */
   circle.prototype.remove = function (){
    /* 遍历数组,找到和调用这个函数相同的圆后用splice函数删除 */
   for(let i=0;i<arr.length;i++){
     if(this==arr[i])
     {
      arr.splice(i,1);
     }
   }
  }
   /* 渲染小圆 */
   circle.prototype.render = function(){
 
   yuan.beginPath();
   yuan.arc(this.x,this.y,this.r,0,2*3.14,false);
   yuan.fillStyle = this.color;
   yuan.fill();
   }
   /* 给画布绑定鼠标经过事件 */
   canvas.addEventListener('mousemove',function(e){
    /* 传入x,y,r。offsetX距离左侧距离,.., */
   new circle(e.offsetX,e.offsetY,Math.random()*15);
   })
 
    /* 定时器渲染小圆,开始动画 ,30毫秒一次 */
   setInterval(function(){
     /* 清屏 */
    yuan.clearRect(0,0,canvas.width,canvas.height);
    /* 循环数组,给每个小圆更新和渲染 */
    for(let i=0;i<arr.length;i++){
     /* 更新 */
     arr[i].updated();
     /* 如果浏览器支持,则渲染 */
     if(arr[i].render()){
      arr[i].render();
     }
     
    }
 
   },30)
 
 </script>

canvas链接
splice()方法链接
random()方法链接
push()方法链接
resize事件链接

完整源码:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="zh-CN">
<head>
 <meta charset="UTF-8">
 <meta name="viewport" content="width=device-width, initial-scale=1.0">
 <title>Document</title>
 <style>
  *{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
  }
  
  body{
   background-color: rgb(72, 75, 122);
  }
  
  h1{
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%,-50%);
   font-size: 5em;
   font-family: 'fangsong';
   color: rgb(38, 205, 247);
  }
  
 </style>
</head>
<body>
 
  <h1>北极光之夜</h1>
 
 <canvas id="draw" style=" position: fixed; display: block;"
            当前浏览器不支持Canvas,请更换浏览器后再试
 </canvas>
 
 <script>
  /* 首先获取canvas画布 */
  var canvas = document.querySelector("#draw");
  var yuan = canvas.getContext("2d"); 
  /* 绑定窗口大小发生改变事件,让canvas随时铺满浏览器可视区 */
   window.onresize=resizeCanvas;
  function resizeCanvas(){
   canvas.width=window.innerWidth;
   canvas.height=window.innerHeight;
  }
  resizeCanvas();
 
  /* 定义数组,存下面触发移动事件时产生的小圆 */
  var arr = [];
  
  /* 绘制小圆形的方法,x与y是初始位置,r是圆半径 */
  function circle (x,y,r){
   this.x=x;
   this.y=y;
   this.r=r;
   /* 得一个随机颜色 */
   this.color = `rgb(${255*Math.random()},${255*Math.random()},${255*Math.random()})`
   /* 圆的移动方向,random函数为随机返回一个0.0到1.0的数,x可得随机正负数,y为随机正数 */
   this.xZou = parseInt(Math.random()*10-5);
   this.yZou = parseInt(Math.random()*10); 
   /* 向arr数组末尾添加这个元素 */
   arr.push(this);
  }
 
  /* 更新圆形的方法 */
   circle.prototype.updated = function() {
    /* x和y增加,呈现圆形一直走 */
   this.x = this.x + this.xZou ;
   this.y = this.y + this.yZou ;
   /* 半径慢慢减少 */
   this.r = this.r - 0.1 ;
   /* 当半径小于1清除这个圆 */
   if(this.r<0){
    this.remove();
   }
   }
   /* 删除小圆的函数 */
   circle.prototype.remove = function (){
    /* 遍历数组,找到和调用这个函数相同的圆后用splice函数删除 */
   for(let i=0;i<arr.length;i++){
     if(this==arr[i])
     {
      arr.splice(i,1);
     }
   }
  }
   /* 渲染小圆 */
   circle.prototype.render = function(){
 
   yuan.beginPath();
   yuan.arc(this.x,this.y,this.r,0,2*3.14,false);
   yuan.fillStyle = this.color;
   yuan.fill();
   }
   /* 给画布绑定鼠标经过事件 */
   canvas.addEventListener('mousemove',function(e){
    /* 传入x,y,r。offsetX距离左侧距离,.., */
   new circle(e.offsetX,e.offsetY,Math.random()*15);
   })
 
    /* 定时器渲染小圆,开始动画 ,30毫秒一次 */
   setInterval(function(){
     /* 清屏 */
    yuan.clearRect(0,0,canvas.width,canvas.height);
    /* 循环数组,给每个小圆更新和渲染 */
    for(let i=0;i<arr.length;i++){
     /* 更新 */
     arr[i].updated();
     /* 如果浏览器支持,则渲染 */
     if(arr[i].render()){
      arr[i].render();
     }
     
    }
 
   },30)
 
 </script>
</body>
</html>

其它:

今日三省吾身:安逸的生活没意思,充满挑战,取得胜利,才是生命真谛。

到此这篇关于html+css+js实现canvas跟随鼠标的小圆特效源码的文章就介绍到这了,更多相关canvas跟随鼠标的小圆内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/luo1831251387/article/details/114714705

延伸 · 阅读

精彩推荐
  • js教程原生JavaScript实现进度条

    原生JavaScript实现进度条

    这篇文章主要为大家详细介绍了原生JavaScript实现进度条,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下...

    weixin_441349725612022-01-21
  • js教程JavaScript中arguments的使用方法详解

    JavaScript中arguments的使用方法详解

    这篇文章主要给大家介绍了关于JavaScript中arguments的使用方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的...

    等待的L先生3732021-12-15
  • js教程js实现碰撞检测

    js实现碰撞检测

    这篇文章主要为大家详细介绍了js实现碰撞检测,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下...

    搬砖大法8192022-01-11
  • js教程JavaScript 实现继承的几种方式

    JavaScript 实现继承的几种方式

    这篇文章主要介绍了JavaScript 实现继承的几种方式,帮助大家更好的理解和使用JavaScript,感兴趣的朋友可以了解下...

    him89822022-01-21
  • js教程选择 JavaScript 测试框架的标准

    选择 JavaScript 测试框架的标准

    由于 JavaScript 被广泛认为是“web语言”,因此该语言的测试自动化框架是最丰富和最受欢迎的也就不足为奇了。通过考虑不同框架的属性,你将更加清楚哪...

    粤嵌教育6962022-01-07
  • js教程7道关于JS this的面试题,你能答对几个

    7道关于JS this的面试题,你能答对几个

    这篇文章主要给大家介绍了7道关于JS this的面试题,来看看你能答对几个,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习...

    前端小混混3512022-02-12
  • js教程JS中箭头函数与this的写法和理解

    JS中箭头函数与this的写法和理解

    这篇文章主要给大家介绍了关于JS中箭头函数与this的写法和理解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需...

    limingru10442021-12-31
  • js教程js面向对象封装级联下拉菜单列表的实现步骤

    js面向对象封装级联下拉菜单列表的实现步骤

    这篇文章主要介绍了js面向对象封装级联下拉菜单列表的实现步骤,帮助大家更好的理解和使用JavaScript,感兴趣的朋友可以了解下...

    蒋伟平8682022-01-19