日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

鼠标吸附彩色气泡

發布時間:2025/3/12 编程问答 26 豆豆
生活随笔 收集整理的這篇文章主要介紹了 鼠标吸附彩色气泡 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

H5Cavas制作鼠標吸附彩色氣泡。當鼠標在屏幕上移動的時候,鼠標劃過的區域會出現許多彩色氣泡,并且會自動消失。

效果演示

看了如此效果是不是心動的感覺呢???

代碼展示

<!DOCTYPE html> <html><head><meta charset="utf-8" /><title>鼠標吸附彩色氣泡</title><style>* {margin: 0;padding: 0;}body {overflow: hidden;}#part {background-color: black;}</style></head><body><canvas id="part"></canvas></body><script>var canvas = document.querySelector('#part');var ctx = canvas.getContext("2d");var starlist = [];function init() {canvas.width = window.innerWidth;canvas.height = window.innerHeight;}init();window.onresize = init;canvas.addEventListener('mousemove', function(e) {starlist.push(new Star(e.offsetX, e.offsetY));console.log(starlist)})function random(min, max) {return Math.floor((max - min) * Math.random() + min);}function Star(x, y) {this.x = x;this.y = y;this.vx = (Math.random() - 0.5) * 2;this.vy = (Math.random() - 0.5) * 2;this.color = 'rgb(' + random(0, 256) + ',' + random(0, 256) + ',' + random(0, 256) + ')';this.a = 1;console.log(this.color);this.draw();}Star.prototype = {draw: function() {ctx.beginPath();ctx.fillStyle = this.color;ctx.globalCompositeOperation = 'lighter'ctx.globalAlpha = this.a;ctx.arc(this.x, this.y, 30, 0, Math.PI * 2, false);ctx.fill();this.updata();},updata() {this.x += this.vx;this.y += this.vy;this.a *= 0.98;}}console.log(new Star(100, 150));function render() {ctx.clearRect(0, 0, canvas.width, canvas.height)starlist.forEach((item, i) => {item.draw();if (item.a < 0.05) {starlist.splice(i, 1);}})requestAnimationFrame(render);}render();</script></html>

此效果能否激起你內心對Cavas的熱愛呢???

了解更多關注我喲!!!

總結

以上是生活随笔為你收集整理的鼠标吸附彩色气泡的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。