日本综合一区二区|亚洲中文天堂综合|日韩欧美自拍一区|男女精品天堂一区|欧美自拍第6页亚洲成人精品一区|亚洲黄色天堂一区二区成人|超碰91偷拍第一页|日韩av夜夜嗨中文字幕|久久蜜综合视频官网|精美人妻一区二区三区

RELATEED CONSULTING
相關咨詢
選擇下列產品馬上在線溝通
服務時間:8:30-17:00
你可能遇到了下面的問題
關閉右側工具欄

新聞中心

這里有您想知道的互聯(lián)網營銷解決方案
JS結合Canvas畫運動小球

??想了解更多內容,請訪問:??

創(chuàng)新互聯(lián)公司是專業(yè)的和靜網站建設公司,和靜接單;提供成都做網站、網站設計,網頁設計,網站設計,建網站,PHP網站建設等專業(yè)做網站服務;采用PHP框架,可快速的進行和靜網站開發(fā)網頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網站,專業(yè)的做網站團隊,希望更多企業(yè)前來合作!

??和華為官方合作共建的鴻蒙技術社區(qū)??

??https://ost.??

前言

canvas是HTML5新增的元素,也被稱為畫布,可以結合javascript實現(xiàn)繪制各種圖形,制作各種炫酷的動畫效果,現(xiàn)在我們也來使用canvas畫隨機運動小球。

實現(xiàn)思路

  1. 首先為了達到我們想要的效果,可以先創(chuàng)建一個構造函數(shù)。
  2. 給構造函數(shù)添加對應的屬性和方法。
  3. 實例化出多個對象,并且保存在數(shù)組中。
  4. 遍歷每個對象,實現(xiàn)畫圓。
  5. 間隔修改每個球的x,y值。

先準備畫布確定對應的寬高:


因為是隨機運動,所以要創(chuàng)建一個獲取隨機數(shù)的方法:

function getRandomNum(minNum, maxNum) {
switch (arguments.length) {
case 1:
return Math.round(Math.random() * minNum + minNum);
break;
case 2:
return Math.round(
Math.random() * (maxNum - minNum) + minNum);
break;
case 0:
return 0;
break;
}
}
// 創(chuàng)建一個Ball的構造函數(shù)
function Ball(maxWidth, maxHeight, ctx) {
this.ctx = ctx;
this.maxWidth = maxWidth;
this.maxHeight = maxHeight;
// 隨機半徑
this.r = getRandomNum(5, 15);
// 隨機x,y坐標
this.x = getRandomNum(this.r, this.maxWidth - this.r);
this.y = getRandomNum(this.r, this.maxHeight - this.r);
// 平移速度,正負區(qū)間是為了移動方向多樣
this.speedX = getRandomNum(-2, 2);
this.speedY = getRandomNum(-2, 2);
// 顏色隨機
this.color = `rgba(${getRandomNum(0, 255)},
${getRandomNum(0, 255)},
${getRandomNum(0, 255)},${Math.random()})`;
}
Ball.prototype = {
draw: function () {
ctx.beginPath();
ctx.fillStyle = this.color;
ctx.arc(this.x, this.y, this.r, 0, Math.PI * 2);
ctx.fill();
ctx.closePath();
},
move: function () {
// 判斷邊界值,讓圓球始終保證在畫面內
if (this.x > this.maxWidth - this.r || this.x < this.r) {
this.speedX = -this.speedX;
}
if (this.y > this.maxHeight - this.r || this.y < this.r) {
this.speedY = -this.speedY;
}
this.x += this.speedX;
this.y += this.speedY;
}
};
// 創(chuàng)建100個Ball實例
let balls = [];
for (let i = 0; i < 100; i++) {
let newBall = new Ball(maxWidth, maxHeight, ctx);
newBall.draw();
balls.push(newBall);
}

靜態(tài)效果

現(xiàn)在我們畫出了不同半徑和顏色的靜止圓球。

調用move方法,間隔修改每個球的x,y值。

setInterval(() => {
// 每次畫之前都要清除畫布
ctx.clearRect(0, 0, maxWidth, maxHeight);
ctx.fillStyle = '#000';
ctx.fillRect(0, 0, maxWidth, maxHeight);
for (let j = 0; j < 100; j++) {
balls[j].draw(ctx);
balls[j].move();
}
}, 100);

效果展示。

總結

canvas強大的繪圖能力可以使網頁的內容更加豐富多彩,給用戶帶來更好的視覺效果和和交互體驗,掌握一些功能的使用可以讓我們的項目更好的理解與canvas相關的框架使用,也能夠創(chuàng)建豐富的web應用,同時也要求我們更好的掌握javascript。

??想了解更多內容,請訪問:??

??和華為官方合作共建的鴻蒙技術社區(qū)??

??https://ost.??


分享文章:JS結合Canvas畫運動小球
當前網址:http://www.dlmjj.cn/article/dpeccch.html