Toggle navigation
在线编辑器
在线代码
文本比较
jQuery下载
前端库
在线手册
登录/注册
UI
|
输入
|
媒体
|
导航
|
其他
|
网页模板
|
APP模板
|
常用代码
|
在线代码
背景
对话框和灯箱
筛选及排序
反馈
弹出层
悬停
布局
图表
加载
圆边
滚动
标签
文本链接
工具提示
网络类型
拾色器
定制和风格
日期和时间
拖和放
通用输入
自动完成
密码
投票率
搜索
选择框
快捷键
触摸
丰富的输入
上传
验证
音频和视频
幻灯片和轮播图
图片展示
图像
地图
滑块和旋转
Tabs
水平导航
垂直导航
文件树
分页
手风琴菜单
其他导航
动画效果
浏览器调整
移动
独立的部件
杂项
游戏
PROMULGATOR
三年
浙江省舟山市
关注作者
(0)
收藏此代码
(1)
← js极简九宫格代码
→ html 计算器代码
相关代码
绚丽
的
小球
时间
跳动
有趣
的
文字
跳动
css
跳动
的
文字动画(原创)
js拖拽
小球
加弹力效果(原创)
css实现
跳动
的
爱心
js
小球
碰撞动画
canvas
小球
碰撞
Html
Css
Js
(function(a) { var width = 100, height = 100, borderRadius = 100, circle = function() {}; circle.prototype = { color: function() { let colour = "#" + Math.floor(Math.random() * 255).toString(16) + Math.floor(Math.random() * 255).toString(16) + Math.floor(Math.random() * 255).toString(16) console.log(colour); return colour; }, drawCircle: function(clientX, clientY) { let ele = document.createElement("div"); let colo = new circle().color(); ele.style.width = width + "px"; ele.style.height = height + "px"; ele.id = "id_" + new Date().getTime(); ele.style.borderRadius = borderRadius + "px"; ele.style.position = "absolute"; ele.style.top = clientY + "px"; ele.style.left = clientX + "px"; ele.style.boxShadow = "0 3px 8px " + colo + ", 0 0 76px " + colo + " inset"; document.body.appendChild(ele); var maxWidth = document.body.clientWidth; var maxHeight = document.body.clientHeight; let way = Math.floor(Math.random() * 3); localStorage.setItem(ele.id, "1"); setInterval(function() { let flag = localStorage.getItem(ele.id); let o = document.getElementById(ele.id); let y; let x; if (flag == "1") { y = (new Number(o.style.top.replace("px", "")) + 1); x = (new Number(o.style.left.replace("px", "")) + 1); if (y >= maxHeight - 100 || x >= maxWidth - 100) { localStorage.setItem(ele.id, "0"); } } else { y = (new Number(o.style.top.replace("px", "")) - 1); x = (new Number(o.style.left.replace("px", "")) - 1); if (y <= 0 || x <= 0) { localStorage.setItem(ele.id, "1"); } } console.log(x, y); if (way == 0) { o.style.top = y + "px"; o.style.left = x + "px"; } else if (way == 1) { o.style.left = x + "px"; } else if (way == 2) { o.style.top = y + "px"; } }, 10); }, drow: function(obj) { obj.addEventListener("click", function(e) { new circle().drawCircle(e.clientX, e.clientY); }) }, autoDraw: function() { setInterval(function() { var maxWidth = document.body.clientWidth; var maxHeight = document.body.clientHeight; let clientX = Math.floor(Math.random() * maxWidth); let clientY = Math.floor(Math.random() * maxHeight); new circle().drawCircle(clientX, clientY); }, 1000); } }, Rander = function() { return new circle(); }, R = function(obj) { Rander().drow(obj); Rander().autoDraw(); } onload = R(a); })(window)
↑上面代码改变,会自动显示代码结果 jQuery调用版本:
1.11.3
立即下载
跳动的小球代码(原创)
代码描述:自动生成小球;点击桌面生成小球,每秒生成1个小球
自动生成小球;点击桌面生成小球,每秒生成1个小球
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号