第二種JavaScript放煙花代碼爆炸出圖形

來源:互聯網
上載者:User

標籤:第二種javascript放煙花代碼爆炸

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>第二種JavaScript放煙花代碼爆炸出圖形</title>
<script type="text/javascript">
var firework = function(){
this.size = 40;
this.speed = 0.1;
this.rise();
}
firework.prototype = {
color:function(){
var c = [‘0‘,‘3‘,‘6‘,‘9‘,‘c‘,‘f‘];
var t = [c[Math.floor(Math.random()*100)%6],‘0‘,‘f‘];
t.sort(function(){return Math.random()>0.5?-1:1;});
return ‘#‘+t.join(‘‘);
},
aheight:function(){
var h = document.documentElement.clientHeight;
return Math.abs(Math.floor(Math.random()*h-200))+201;
},
firecracker:function(){
var b = document.createElement(‘div‘);
var w = document.body.clientWidth;
b.style.color = this.color();
b.style.position = ‘absolute‘;
b.style.bottom = 0;
b.style.left = Math.floor(Math.random()*w)+1+‘px‘;
document.body.appendChild(b);
return b;
},
rise:function(){
var o = this.firecracker();
var n = this.aheight();
var speed = this.speed;
var e = this.expl;
var s = this.size;
var k = n;
var m = function(){
o.style.bottom = parseFloat(o.style.bottom)+k*speed+‘px‘;
k-=k*speed;
if(k<2){
clearInterval(clear);
e(o,n,s,speed);
}
}
o.innerHTML = ‘*‘;
if(parseInt(o.style.bottom)<n){
var clear = setInterval(m,20);
}
},
expl:function(o,n,s,speed){
var R = n/3;
var Ri = n/6;
var r = 0;
var ri = 0;
for(var i=0;i<s;i++){
var span = document.createElement(‘span‘);
var p = document.createElement(‘p‘);
span.style.position = ‘absolute‘;
span.style.left = 0;
span.style.top = 0;
span.innerHTML = ‘*‘;
p.style.position = ‘absolute‘;
p.style.left = 0;
p.style.top = 0;
p.innerHTML = ‘+‘;
o.appendChild(span);
o.appendChild(p);
}
function spr(){
r += R*speed;
ri+= Ri*speed/2;
sp = o.getElementsByTagName(‘span‘);
p = o.getElementsByTagName(‘p‘);
for(var i=0; i<sp.length;i++){
sp[i].style.left=r*Math.cos(360/s*i)+‘px‘;
sp[i].style.top=r*Math.sin(360/s*i)+‘px‘;
p[i].style.left=ri*Math.cos(360/s*i)+‘px‘;
p[i].style.top=ri*Math.sin(360/s*i)+‘px‘;
}
R-=R*speed;
if(R<2){
clearInterval(clearI);
o.parentNode.removeChild(o);
}
}
var clearI = setInterval(spr,20);
}
}
window.onload = function(){
function happyNewYear(){
new firework();
}
setInterval(happyNewYear,400);
}
</script>
<style type="text/css">
</style>
</head>
<body style="background:#000;font:12px Arial">
<div><A href="http://www.999jiujiu.com/">http://www.999jiujiu.com/</A></div>
</body>
</html>

第二種JavaScript放煙花代碼爆炸出圖形

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.