Toggle navigation
在线编辑器
在线代码
文本比较
jQuery下载
前端库
在线手册
登录/注册
UI
|
输入
|
媒体
|
导航
|
其他
|
网页模板
|
APP模板
|
常用代码
|
在线代码
背景
对话框和灯箱
筛选及排序
反馈
弹出层
悬停
布局
图表
加载
圆边
滚动
标签
文本链接
工具提示
网络类型
拾色器
定制和风格
日期和时间
拖和放
通用输入
自动完成
密码
投票率
搜索
选择框
快捷键
触摸
丰富的输入
上传
验证
音频和视频
幻灯片和轮播图
图片展示
图像
地图
滑块和旋转
Tabs
水平导航
垂直导航
文件树
分页
手风琴菜单
其他导航
动画效果
浏览器调整
移动
独立的部件
杂项
游戏
PROMULGATOR
师寇Dill
北京市北京三信时代信息公司
关注作者
(10)
收藏此代码
(116)
← tab切换中套tab切换
→ 移动端滚动穿透问题解决方案
相关代码
简易
星空
图
(含鼠标事件)
简易
星空
图
canvas
五角星、满天星、
星空
用
canvas
绘制
星空
星空
背景代码实现
纯js完成
canvas
星空
粒子效果
canvas
旋转3d
星空
粒子
Html
Css
Js
"use strict" var Num = 80; var points = []; var c = $('#c').get(0); var ctx = c.getContext('2d'); var w = c.width = window.innerWidth; var h = c.height = window.innerHeight; var point = function() { this.x = Math.random() * w; this.y = Math.random() * h; this.color = Math.random() * 360; this.count = 5; this.mindis = 80; this.speedx = Math.random() * 2 - 1; this.speedy = Math.random() * 2 - 1; //this.bound=false; } point.prototype.constructor = point; point.prototype.lineTo = function(points) { ctx.beginPath(); for (var i in points) { var dis = Math.sqrt(Math.pow((this.x - points[i].x), 2) + Math.pow((this.y - points[i].y), 2)); if (this.count > 0 && points[i].count > 0 && dis < this.mindis) { var grd = ctx.createLinearGradient(this.x, this.y, points[i].x, points[i].y); var o = dis * 0.8 / this.mindis + 0.2; grd.addColorStop(0, "hsla(" + this.color + ",100%,50%," + o + ")"); grd.addColorStop(1, "hsla(" + points[i].color + ",100%,50%," + o + ")"); ctx.strokeStyle = grd; ctx.moveTo(this.x, this.y); ctx.lineTo(points[i].x, points[i].y); ctx.stroke(); this.count--; points[i].count--; } } ctx.closePath(); }; point.prototype.mouse = function(mousex, mousey) { var dx = (this.x - mousex); var dy = (this.y - mousey); var dis = Math.sqrt(Math.pow(dx, 2) + Math.pow(dy, 2)); if (dis < 100 && dis > 60) { dx > 0 ? this.x -= 10 : this.x += 10; dy > 0 ? this.y -= 10 : this.y += 10; } else if (dis < 80) { this.count = 10; } } point.prototype.init = function() { this.x += this.speedx; this.y += this.speedy; this.count = 6; }; point.prototype.isBound = function() { if (this.x < 0 || this.x > w) { //this.bound=true; this.speedx = -this.speedx; } else if (this.y < 0 || this.y > h) { this.speedy = -this.speedy; } }; (function createPoints() { for (var i = 0; i < Num; i++) { points.push(new point()); } })(); function drawPoints() { ctx.clearRect(0, 0, w, h); for (var i in points) { var p = points[i]; //if(!parseInt(Math.random()*4,10)){ // p.init(); //} p.isBound(); p.init(); p.mouse(p.mousex, p.mousey) console.log(p.mousex) //p.count=5; ctx.fillStyle = "hsla(" + p.color + ",100%,50%,1)"; ctx.fillRect(p.x - 1, p.y - 1, 2, 2); p.lineTo(points); } } $('body').get(0).onmousemove = function(e) { point.prototype.mousex = e.clientX; point.prototype.mousey = e.clientY; } setInterval(drawPoints, 100)
↑上面代码改变,会自动显示代码结果 jQuery调用版本:
1.11.3
立即下载
简易星空图(含鼠标事件)
代码描述:canvas 星空图
0
最新
发表评论
全部评论
暂时没有评论!
登录后才可以评论
30秒后在评论吧!
发表评论
回复
取消回复
<!doctype html> <html> <head> <meta charset="utf-8"> <title>简易星空图(含鼠标事件)-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号