使用原生JS实现烟花效果

时间:2024-10-02 19:54:23

原生JS实现烟花效果,点击页面生成烟花,向四周扩散,然后再坠落下去。(这里的烟花我是用的特殊字符爱心形状)
在这里插入图片描述

基础css代码

			/* 设置基础的css样式 */
			body{background: #000;overflow: hidden;}
			.fire{position: absolute;width: 4px;height: 30px;}
  • 1
  • 2
  • 3

js代码:

  1. 给页面添加点击事件,生成主体烟花
	//给页面设置点击事件
	document.onclick = function(eve){
		var e = eve || window.event;
		//设置一个空数组,用来后面存放小烟花
		var arr = [];
		//获取鼠标点击的位置
		var x = e.clientX;
		var y = e.clientY;
		//设置步长
		var speed = 20;
		//生成大烟花,设置他的css样式,出发点在可视区页面的下方
		var fire = document.createElement('div');
		fire.className = 'fire';
		fire.style.background = randomColor();
		fire.style.left = x + 'px';
		fire.style.top = document.documentElement.clientHeight+'px';
		//将大烟花追加到页面上
		document.body.appendChild(fire);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  1. 设置定时器,让烟花向上运动,删除
	//生成定时器
	var t = setInterval(function(){
		//判断如果大烟花的TOP值小于小于目标值,清除定时器,并且将大烟花清除
		if(fire.offsetTop <= y){
			clearInterval(t);
			document.body.removeChild(fire);
			//执行show(生成小烟花)
			show();
		}
		//让大烟花垂直向上运动
		fire.style.top = fire.offsetTop - speed +'px';
	},30);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  1. 然后在点击的位置生成小烟花,设置样式
	function show(){
		//利用循环,生成50个小烟花,给小烟花添加css属性
		for(var i=0;i<50;i++){
			var sFire = document.createElement('div');
			//  = 'small-fire';
			sFire.style.left = x +'px';
			sFire.style.top = y +'px';
			//  = randomColor();
			sFire.style.color = randomColor();
			sFire.innerHTML = '❤';
			sFire.style.position = 'absolute';
			//生成随机数
			var a=Math.random()*360;
			sFire.sx = Math.sin(a*180/Math.PI)*20*Math.random();
			sFire.sy = Math.cos(a*180/Math.PI)*20*Math.random();
			//将小烟花追加到页面上
			document.body.appendChild(sFire);
			//将生成的烟花信息都添加到数组中
			arr.push(sFire);
		}
	}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
'
运行
  1. 设置定时器,让小烟花完成*落体运动
	setInterval(function move(){
		//利用循环一直改变小烟花的位置
		for(var i=0;i<arr.length;i++){
			//设置将每次循环的第i个小烟花的运动范围
			arr[i].style.left = arr[i].offsetLeft + arr[i].sx + 'px';
			arr[i].style.top = arr[i].offsetTop + arr[i].sy + 'px';
			//让烟花垂直方向的位置每次都增加,实现下落效果
			arr[i].sy += 1;
			//判断烟花是否运动出屏幕可视区,如果是,就将它删除
			if(arr[i].offsetLeft<0 || arr[i].offsetLeft > document.documentElement.clientWidth || arr[i].offsetTop > document.documentElement.clientHeight){
				document.body.removeChild(arr[i]);
				// (i,1);
			}
		}
	},30)
	}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  1. 最后别忘了我们的随机数和随机颜色的封装
	// 范围随机数
	function random(max,min){
	    return Math.round(Math.random()*(max-min)+min);
	}
	// 随机颜色
	function randomColor(){
	    return "rgb("+random(0,255)+","+random(0,255)+","+random(0,255)+")";
	}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
'
运行

最后我们的烟花效果就实现了

今天的分享就到这里,希望大家能够喜欢(OvO)(OvO)