Toggle navigation
在线编辑器
在线代码
文本比较
jQuery下载
前端库
在线手册
登录/注册
UI
|
输入
|
媒体
|
导航
|
其他
|
网页模板
|
APP模板
|
常用代码
|
在线代码
背景
对话框和灯箱
筛选及排序
反馈
弹出层
悬停
布局
图表
加载
圆边
滚动
标签
文本链接
工具提示
网络类型
拾色器
定制和风格
日期和时间
拖和放
通用输入
自动完成
密码
投票率
搜索
选择框
快捷键
触摸
丰富的输入
上传
验证
音频和视频
幻灯片和轮播图
图片展示
图像
地图
滑块和旋转
Tabs
水平导航
垂直导航
文件树
分页
手风琴菜单
其他导航
动画效果
浏览器调整
移动
独立的部件
杂项
游戏
PROMULGATOR
I I I
河南省许昌市
关注作者
(4)
收藏此代码
(136)
← 菜单渐入渐出
→ H5移动端多图片压缩上传
相关代码
心形,我
心
飞扬
canvas
画ladingview
canvas
画图板
canvas
画板
canvas
绘图
canvas
炫酷时钟
canvas
时针
Html
Css
Js
body { margin:0; overflow:hidden; background:#303035; }
var canvas = document.querySelector("canvas"); var ctx = canvas.getContext("2d"); //初始化页面新的数量 var num = 10; var ww = window.innerWidth; var wh = window.innerHeight; var hearts = []; function init() { requestAnimationFrame(render); canvas.width = ww; canvas.height = wh; for (var i = 0; i < num; i++) { hearts.push(new Heart()); } // console.log(hearts) } var timeaur; $("body").on("mousedown", function(event) { var e = event || window.event; var x = e.clientX, y = e.clientY; timeaur = setInterval(function() { console.log(123123) hearts.push(new Heart(x, y)); num++ }, 100) $("body").on("mousemove", function(event) { var e = event || window.event; var x = e.clientX, y = e.clientY; hearts.push(new Heart(x, y)); num++ }) }) $("body").on("mouseup", function() { clearInterval(timeaur) $("body").off("mousemove") }) function Heart(x, y) { if (x) { this.x = x; this.y = y; } else { this.x = Math.random() * ww; this.y = Math.random() * wh; } this.opacity = (Math.random() * 0.5) + 0.5; this.vel = { x: (Math.random() - 0.5) * 4, y: (Math.random() - 0.5) * 4 }; this.targetScale = (Math.random() * 0.15) + 0.02; this.scale = this.targetScale * Math.random(); } Heart.prototype.update = function() { this.x += this.vel.x; this.y += this.vel.y; this.scale += (this.targetScale - this.scale) * 0.01; if (this.x - this.width > ww || this.x + this.width < 0) { this.scale = 0; this.x = Math.random() * ww; } if (this.y - this.height > wh || this.y + this.height < 0) { this.scale = 0; this.y = Math.random() * wh; } this.width = 473.8 * this.scale; this.height = 408.6 * this.scale; } Heart.prototype.draw = function() { ctx.globalAlpha = this.opacity; ctx.drawImage(heartImage, this.x - this.width * 0.5, this.y - this.height * 0.5, this.width, this.height); } function render() { ctx.clearRect(0, 0, ww, wh); // ctx.globalAlpha = 1; // ctx.fillStyle = "rgba(255,255,255,0.3)"; // ctx.fillRect(0, 0, ww, wh); for (var i = 0; i < num; i++) { hearts[i].update(); hearts[i].draw(); } requestAnimationFrame(render); } var heartImage = new Image(); heartImage.onload = init(); heartImage.src = "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0NzMuOHB4IiBoZWlnaHQ9IjQwOC42cHgiIHZpZXdCb3g9IjAgMCA0NzMuOCA0MDguNiI+PHBhdGggZmlsbD0iI2QzMjkzMiIgZD0iTTQwNC42LDE2LjZDMzg1LjQsNi4xLDM2My41LDAsMzQwLDBjLTQxLjUsMC03OC41LDE4LjktMTAzLDQ4LjVDMjEyLjMsMTguOSwxNzUuMywwLDEzMy44LDAgYy0yMy4zLDAtNDUuMyw2LjEtNjQuNSwxNi42QzI3LjksMzkuNSwwLDgzLjQsMCwxMzMuOWMwLDE0LjQsMi40LDI4LjMsNi42LDQxLjJDMjkuNiwyNzguNCwyMzcsNDA4LjYsMjM3LDQwOC42IHMyMDcuMi0xMzAuMiwyMzAuMi0yMzMuNWM0LjMtMTIuOSw2LjYtMjYuOCw2LjYtNDEuMkM0NzMuOCw4My40LDQ0NS45LDM5LjYsNDA0LjYsMTYuNnoiLz48L3N2Zz4="; window.addEventListener("resize", function() { ww = window.innerWidth; wh = window.innerHeight; })
↑上面代码改变,会自动显示代码结果 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号