Toggle navigation
在线编辑器
在线代码
文本比较
jQuery下载
前端库
在线手册
登录/注册
UI
|
输入
|
媒体
|
导航
|
其他
|
网页模板
|
APP模板
|
常用代码
|
在线代码
背景
对话框和灯箱
筛选及排序
反馈
弹出层
悬停
布局
图表
加载
圆边
滚动
标签
文本链接
工具提示
网络类型
拾色器
定制和风格
日期和时间
拖和放
通用输入
自动完成
密码
投票率
搜索
选择框
快捷键
触摸
丰富的输入
上传
验证
音频和视频
幻灯片和轮播图
图片展示
图像
地图
滑块和旋转
Tabs
水平导航
垂直导航
文件树
分页
手风琴菜单
其他导航
动画效果
浏览器调整
移动
独立的部件
杂项
游戏
PROMULGATOR
→_→
四川省成都市
关注作者
(7)
收藏此代码
(126)
← 进度条,自定义,有刻度
→ jQuery轮播图(原创)
相关代码
canvas
跟随
鼠标
canvas
鼠标
跟随
一个简单的
鼠标
跟随
demo(请移动
鼠标
)
canvas
鼠标
跟随
代码
canvas
跟随
鼠标
移动的随机线条
canvas
简单的
鼠标
跟随
canvas
画球
跟随
鼠标
,以及爆炸弹射效果
Html
Css
Js
* { margin:0; padding:0 }
let canvas = document.getElementById("myCanvas"); let width = canvas.width = window.innerWidth; let height = canvas.height = window.innerHeight; let ctx = canvas.getContext("2d"); let R = 0, G = 70, B = 255, rs = 1, gs = 1, bs = 1; ctx.fillRect(0, 0, width, height); function Circle(x, y, size, color, opc) { this.x = x; this.y = y; this.size = size; this.color = color; this.opc = opc } Circle.prototype.draw = function() { ctx.beginPath(); ctx.strokeStyle = this.color; ctx.lineWidth = 4 ctx.arc(this.x, this.y, this.size, 0, 2 * Math.PI); ctx.stroke(); } Circle.prototype.update = function() { this.size = this.size + 1; this.opc = (60 - this.size) / 60; this.color = `rgba(${R},${G},${B},${this.opc})` } // let circle = new Circle(100,100,10,"red"); let circleList = []; function loop() { ctx.clearRect(0, 0, width, height); ctx.fillRect(0, 0, width, height); changeColor(); circleList.forEach((v, i) => { if (v.size >= 60) { circleList.splice(i, 1); return; } v.draw(); v.update() }) requestAnimationFrame(loop) } loop() //改变颜色 function changeColor() { if (R == 0 || R == 255) rs *= -1; if (G == 0 || G == 255) gs *= -1; if (B == 0 || B == 255) bs *= -1; R += 1 * rs; G += 1 * gs; B += 1 * bs; } // 响应事件 canvas.addEventListener("mousemove", function(e) { circleList.push(new Circle(e.clientX, e.clientY, 20, `rgba(${R},${G},${B},${1})`, 1)) })
↑上面代码改变,会自动显示代码结果 jQuery调用版本:
1.11.3
立即下载
一个简单的鼠标跟随demo(请移动鼠标)
代码描述:canvas练习,看到好的东西就忍不住模仿
2
最新
发表评论
全部评论
暂时没有评论!
→_→
0
2020/9/29 16:30:56
wasm版本地址: https://github.com/kiliaosi/wasm-circle-list/blob/master/src/lib.rs
回复
登录后才可以评论
30秒后在评论吧!
发表评论
回复
取消回复
<!doctype html> <html> <head> <meta charset="utf-8"> <title>一个简单的鼠标跟随demo(请移动鼠标)-jq22.com</title> <script src="https://libs.baidu.com/jquery/1.11.3/jquery.min.js"></script> <style>
</style> </head> <body>
<script>
</script>
</body> </html>
2012-2021 jQuery插件库版权所有
jquery插件
|
jq22工具库
|
网页技术
|
广告合作
|
在线反馈
|
版权声明
沪ICP备13043785号-1
浙公网安备 33041102000314号