JS原生 之------放烟花喽

2024-08-23 13:32
文章标签 js ------ 原生 烟花

本文主要是介绍JS原生 之------放烟花喽,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

<!DOCTYPE html>
<html><head><meta charset="UTF-8"><title>放烟花——欣欣博客</title><style>html,body{overflow:hidden;}body,div,p{margin:0;padding:0;}body{background:#000;font:12px/1.5 arial;color:#7A7A7A;}.fire {width: 3px;height: 30px;background: white;position: absolute;} .spark {position: absolute;width: 6px;height: 6px;}</style><script src="move.js"></script><script>οnlοad=function(){document.οnclick=function(e){e =e||event;var coord ={x:e.clientX,y:e.clientY};new Fire(coord).init().launch();}function Fire(coord){var self = this;//初始化this.init=function(){this.ball = document.createElement("div");this.ball.className="fire";this.ball.style.left = coord.x+"px";this.ball.style.top= window.innerHeight +"px";document.body.appendChild(this.ball);return this;}//发射this.launch=function(){animate(this.ball,{left:coord.x,top:coord.y,height:3},{callback:function(){self.explode();}});					return this;}//爆炸this.explode=function(){this.destory();var count = randomInt(30,50);for(var i =0;i<count;i++){new Spark(coord).init().parabola();}}//销毁this.destory = function(){this.ball.remove();}}function Spark(coord){var self = this;this.init=function(){this.box = document.createElement("div");this.box.className="spark";this.box.style.backgroundColor="#"+randomColor();console.log(this.box.style.backgroundColor)this.box.style.left = coord.x+"px";this.box.style.top = coord.y+"px";this.box.speedX = randomInt(-20,20);this.box.speedY = randomInt(-20,10);document.body.appendChild(this.box);return this;}this.parabola=function(){this.timer =setInterval(function(){if(self.box.offsetTop >window.innerHeight){clearInterval(self.timer);self.destroy();return;}self.box.style.left = self.box.offsetLeft + self.box.speedX +"px";self.box.style.top = self.box.offsetTop +self.box.speedY++ +"px";},30)}this.destory=function(){this.box.remove();}}//随机整数function randomInt(min,max){return Math.round(Math.random()*(max-min)+min);}//随机颜色function randomColor(){var R = Math.round( Math.random()*255 ).toString(16);var G = Math.round( Math.random()*255 ).toString(16);var B = Math.round( Math.random()*255 ).toString(16);return (R.length<2?"0"+R:R) + (G.length<2?"0"+G:G)+ (B.length<2?"0"+B:B);}}</script></head><body></body>
</html>
move.js
<pre name="code" class="javascript">/*** * @param {Object} obj 目标对象* @param {Object} json 要改变的属性* @param {Object} extend {buffer,callback} 当buffer为true时为弹性运动*  callback会在运动结束时,被执行* animate(obj, {top:500, left: 300}, {callback:function(){}, buffer: true})*/
function animate(obj, json, extend){extend = extend || {};if(obj.isMoving){return;} else {stop();obj.isMoving = true;}//obj = Object.assgin(obj,extend);obj.buffer = extend.buffer;obj.callback = extend.callback;obj.timerlist = {};//为每一个属性添加一个定时器for(var attr in json){(function(attr){obj.timerlist[attr] = {speed:0};obj.timerlist[attr].timer = setInterval(function(){//首先得到当前值var iNow = 0;if(attr == "opacity"){iNow = getStyle(obj, attr) * 100; } else {iNow = getStyle(obj, attr);}var speed = obj.timerlist[attr].speed;//根据目标值,计算需要的速度if(obj.buffer==true){speed += (json[attr] - iNow)/5;speed *= 0.75;} else {speed = (json[attr] - iNow)/5;}//当无限接近目标值时,停止定时器if(Math.abs(iNow - json[attr]) < 0.5){clearInterval(obj.timerlist[attr].timer);delete obj.timerlist[attr];if(getObjLength(obj.timerlist)==0){//所有定时器已停止stop();obj.callback ? obj.callback() : "";}} else {//根据速度,修改当前值if(attr == "opacity"){obj.style.opacity = (iNow+speed)/100;obj.style.filter = 'alpha(opacity=' + parseFloat(iNow+speed) + ')';			} else {obj.style[attr] = iNow+speed+"px";}obj.timerlist[attr].speed = speed;}}, 30);})(attr);}function clearTimer(){for(var i in obj.timerlist){clearInterval(obj.timerlist[i]);}}function getStyle(obj, attr){if(obj.currentStyle){return isNaN(parseFloat(obj.currentStyle[attr])) ? obj.style[attr]=0 : parseFloat(obj.currentStyle[attr]);} else {return isNaN(parseFloat(getComputedStyle(obj, null)[attr])) ? obj.style[attr]=0 : parseFloat(getComputedStyle(obj, null)[attr]);}}function getObjLength(obj){var n = 0;for(var i in obj){n++;}return n;}function stop(){clearTimer();//清除所有定时器obj.isMoving = false;}
}


 

                                    

这篇关于JS原生 之------放烟花喽的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1099517

相关文章

Node.js net模块的使用示例

《Node.jsnet模块的使用示例》本文主要介绍了Node.jsnet模块的使用示例,net模块支持TCP通信,处理TCP连接和数据传输,具有一定的参考价值,感兴趣的可以了解一下... 目录简介引入 net 模块核心概念TCP (传输控制协议)Socket服务器TCP 服务器创建基本服务器服务器配置选项服

mac安装nvm(node.js)多版本管理实践步骤

《mac安装nvm(node.js)多版本管理实践步骤》:本文主要介绍mac安装nvm(node.js)多版本管理的相关资料,NVM是一个用于管理多个Node.js版本的命令行工具,它允许开发者在... 目录NVM功能简介MAC安装实践一、下载nvm二、安装nvm三、安装node.js总结NVM功能简介N

前端原生js实现拖拽排课效果实例

《前端原生js实现拖拽排课效果实例》:本文主要介绍如何实现一个简单的课程表拖拽功能,通过HTML、CSS和JavaScript的配合,我们实现了课程项的拖拽、放置和显示功能,文中通过实例代码介绍的... 目录1. 效果展示2. 效果分析2.1 关键点2.2 实现方法3. 代码实现3.1 html部分3.2

JS 实现复制到剪贴板的几种方式小结

《JS实现复制到剪贴板的几种方式小结》本文主要介绍了JS实现复制到剪贴板的几种方式小结,包括ClipboardAPI和document.execCommand这两种方法,具有一定的参考价值,感兴趣的... 目录一、Clipboard API相关属性方法二、document.execCommand优点:缺点:

Node.js 中 http 模块的深度剖析与实战应用小结

《Node.js中http模块的深度剖析与实战应用小结》本文详细介绍了Node.js中的http模块,从创建HTTP服务器、处理请求与响应,到获取请求参数,每个环节都通过代码示例进行解析,旨在帮... 目录Node.js 中 http 模块的深度剖析与实战应用一、引言二、创建 HTTP 服务器:基石搭建(一

React实现原生APP切换效果

《React实现原生APP切换效果》最近需要使用Hybrid的方式开发一个APP,交互和原生APP相似并且需要IM通信,本文给大家介绍了使用React实现原生APP切换效果,文中通过代码示例讲解的非常... 目录背景需求概览技术栈实现步骤根据 react-router-dom 文档配置好路由添加过渡动画使用

使用Vue.js报错:ReferenceError: “Vue is not defined“ 的原因与解决方案

《使用Vue.js报错:ReferenceError:“Vueisnotdefined“的原因与解决方案》在前端开发中,ReferenceError:Vueisnotdefined是一个常见... 目录一、错误描述二、错误成因分析三、解决方案1. 检查 vue.js 的引入方式2. 验证 npm 安装3.

JS常用组件收集

收集了一些平时遇到的前端比较优秀的组件,方便以后开发的时候查找!!! 函数工具: Lodash 页面固定: stickUp、jQuery.Pin 轮播: unslider、swiper 开关: switch 复选框: icheck 气泡: grumble 隐藏元素: Headroom

在JS中的设计模式的单例模式、策略模式、代理模式、原型模式浅讲

1. 单例模式(Singleton Pattern) 确保一个类只有一个实例,并提供一个全局访问点。 示例代码: class Singleton {constructor() {if (Singleton.instance) {return Singleton.instance;}Singleton.instance = this;this.data = [];}addData(value)

Node.js学习记录(二)

目录 一、express 1、初识express 2、安装express 3、创建并启动web服务器 4、监听 GET&POST 请求、响应内容给客户端 5、获取URL中携带的查询参数 6、获取URL中动态参数 7、静态资源托管 二、工具nodemon 三、express路由 1、express中路由 2、路由的匹配 3、路由模块化 4、路由模块添加前缀 四、中间件