91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在JavaScript中使用canvas實現一個跟隨鼠標事件

發布時間:2021-04-16 17:54:56 來源:億速云 閱讀:154 作者:Leah 欄目:web開發

這期內容當中小編將會給大家帶來有關怎么在JavaScript中使用canvas實現一個跟隨鼠標事件,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

<!DOCTYPE html>
<html>

<head>
 <meta charset="UTF-8">
 <title></title>
 <style>
 body {
 margin: 0;
 overflow: hidden;
 }

 #canvas {
 background: #000;
 }
 </style>
</head>

<body>
 <canvas id="canvas"></canvas>
 <script>
 var canvas = document.getElementById('canvas');
 var context = canvas.getContext('2d');
 var circleList = [];

 canvas.width = window.innerWidth;
 canvas.height = window.innerHeight;

 canvas.addEventListener('mousemove', function (e) {
 // 將對象push到數組中,畫出來的彩色小點可以看作每一個對象中記錄著信息 然后存在數組中
 circleList.push(new Circle(e.clientX, e.clientY));
 })

 //取x到y之間隨機數:Math.round(Math.random()*(y-x)+x) 包括y
 function random(min, max) {
 return Math.round(Math.random() * (max - min) + min);
 }

 function Circle(x, y) {
 this.x = x;
 this.y = y;

 this.vx = (Math.random() - 0.5) * 3; //隨機出來一個正數,或者負數。乘3是為了讓速度變得大一點
 this.vy = (Math.random() - 0.5) * 3;

 this.color = 'rgb(' + random(0, 255) + ',' + random(0, 255) + ',' + random(0, 255) + ')';

 this.a = 1; // 初始透明度

 this.draw();
 }
 Circle.prototype = {
 draw() {
 context.beginPath();
 context.fillStyle = this.color;
 context.globalCompositeOperation = 'lighter';
 context.globalAlpha = this.a; //全局透明度
 context.arc(this.x, this.y, 30, 0, Math.PI * 2, false);
 context.fill();
 this.update();
 },
 update() {
 // 根據速度更新每一個小圓的位置
 this.x += this.vx;
 this.y += this.vy;
 this.a *= 0.98;
 }
 }

 function render() {
 //把原來的內容區域清除掉
 context.clearRect(0, 0, canvas.width, canvas.height);
 circleList.forEach(function (ele, i) {
 ele.draw();

 if (ele.a < 0.05) {
  circleList.splice(i, 1);
 }
 });

 requestAnimationFrame(render); //動畫,會根據瀏覽器的刷新頻率更新動畫
 }
 render();
 </script>
</body>

</html>

上述就是小編為大家分享的怎么在JavaScript中使用canvas實現一個跟隨鼠標事件了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

台江县| 闽清县| 饶阳县| 平泉县| 宝兴县| 阿尔山市| 洛隆县| 苏尼特左旗| 鸡西市| 岑溪市| 迁西县| 沽源县| 固阳县| 两当县| 准格尔旗| 阳西县| 修武县| 上高县| 婺源县| 红安县| 蒙山县| 龙口市| 青铜峡市| 深泽县| 钟山县| 土默特右旗| 建水县| 邓州市| 四会市| 阜新市| 岳阳县| 西乌珠穆沁旗| 读书| 龙岩市| 京山县| 大姚县| 嵩明县| 吉木萨尔县| 宿松县| 南阳市| 永泰县|