Toggle navigation
在线编辑器
在线代码
文本比较
jQuery下载
前端库
在线手册
登录/注册
UI
|
输入
|
媒体
|
导航
|
其他
|
网页模板
|
APP模板
|
常用代码
|
在线代码
背景
对话框和灯箱
筛选及排序
反馈
弹出层
悬停
布局
图表
加载
圆边
滚动
标签
文本链接
工具提示
网络类型
拾色器
定制和风格
日期和时间
拖和放
通用输入
自动完成
密码
投票率
搜索
选择框
快捷键
触摸
丰富的输入
上传
验证
音频和视频
幻灯片和轮播图
图片展示
图像
地图
滑块和旋转
Tabs
水平导航
垂直导航
文件树
分页
手风琴菜单
其他导航
动画效果
浏览器调整
移动
独立的部件
杂项
游戏
PROMULGATOR
296769589@qq.com
四川省成都市
关注作者
(2)
收藏此代码
(112)
← 时间轴菜单导航
→ JS下划线跟随tab选项卡
相关代码
canvas
画ladingview
canvas
画图板
canvas
画板
canvas
绘图
canvas
炫酷时钟
canvas
时针
canvas
雪花
Html
Css
Js
#canvas { width:400px; height:432px; }
class Lamp { /** * * @param canvas_id canvas元素id * @param img 图片路径 * @param cover_color 遮盖颜色,与cxt.fillStyle一致 * @param radius 显示圆环大小 */ constructor(canvas_id, img, cover_color, radius) { //基本属性 this.img = document.createElement("img"); this.img.src = img; this.ctx = document.getElementById(canvas_id).getContext("2d"); this.canvas = this.ctx.canvas; this.hideC1 = document.createElement("canvas").getContext("2d"); this.overColor = cover_color; this.radius = radius; this.x = 0; this.y = 0; this.img.onload = () => this.init(); } init() { //初始化画布 this.ctx.fillStyle = this.overColor; this.ctx.fillRect(0, 0, this.canvas.width, this.canvas.height); this.overImgData = this.ctx.getImageData(0, 0, this.canvas.width, this.canvas.height); //初始化C1 C2并绑定监听事件 this.initHideC1(); this.canvas.addEventListener('mousemove', (event) => this.mouseMove(event)); this.canvas.addEventListener('mouseout', (event) => this.mouseOut(event)); } //初始化c1 initHideC1() { let t = this.hideC1.canvas; t.width = this.canvas.width; t.height = this.canvas.height; this.hideC1.drawImage(this.img, 0, 0, this.img.width, this.img.height); return this; } //鼠标在画布上移动 mouseMove(e) { let t = this.canvas.getBoundingClientRect(); this.x = e.clientX - t.left - this.radius; this.y = e.clientY - t.top - this.radius; this.light(); return this; } //鼠标移除 mouseOut() { this.ctx.putImageData(this.overImgData, 0, 0); return this; } //添加聚光灯效果 light() { this.ctx.clearRect(0, 0, this.canvas.width, this.canvas.height); this.ctx.putImageData(this.overImgData, 0, 0); this.ctx.beginPath(); this.ctx.arc(this.x + this.radius, this.y + this.radius, this.radius, 0, Math.PI * 2); this.ctx.fillStyle = this.ctx.createPattern(this.hideC1.canvas, 'no-repeat'); this.ctx.fill(); } } new Lamp('canvas', "http://www.jq22.com/demo/jquerylbt201801062335/images/a1.png", 'rgba(45,0,0,0.7)', 150);
↑上面代码改变,会自动显示代码结果 jQuery调用版本:
1.11.3
立即下载
使用canvas创建聚光灯效果(原创)
代码描述:使用html5 canvas创建聚光灯效果
0
最新
发表评论
全部评论
暂时没有评论!
登录后才可以评论
30秒后在评论吧!
发表评论
回复
取消回复
<!doctype html> <html> <head> <meta charset="utf-8"> <title>使用canvas创建聚光灯效果(原创)-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号