المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : كود ألعاب نارية داخل منتداك


شيخة رواية
05-12-2020, 02:33 PM
كود ألعاب نارية داخل منتداك


طريقة التركيب

انسخ هذا الكود و ضعه في المكان الذي تريده في منطقة BODY


كود:
<layer name="a0" left=10 top=10 visibility=show bgcolor="#ffffff" clip="0,0,1,1"></layer>
<layer name="a1" left=10 top=10 visibility=show bgcolor="#fff000" clip="0,0,1,1"></layer>
<layer name="a2" left=10 top=10 visibility=show bgcolor="#ffa000" clip="0,0,1,1"></layer>
<layer name="a3" left=10 top=10 visibility=show bgcolor="#ff00ff" clip="0,0,1,1"></layer>
<layer name="a4" left=10 top=10 visibility=show bgcolor="#00ff00" clip="0,0,1,1"></layer>
<layer name="a5" left=10 top=10 visibility=show bgcolor="#ff00ff" clip="0,0,1,1"></layer>
<layer name="a6" left=10 top=10 visibility=show bgcolor="#ff0000" clip="0,0,1,1"></layer>
<layer name="a7" left=10 top=10 visibility=show bgcolor="#ffffff" clip="0,0,1,1"></layer>
<layer name="a8" left=10 top=10 visibility=show bgcolor="#fff000" clip="0,0,1,1"></layer>
<layer name="a9" left=10 top=10 visibility=show bgcolor="#ffa000" clip="0,0,1,1"></layer>
<layer name="a10" left=10 top=10 visibility=show bgcolor="#ff00ff" clip="0,0,1,1"></layer>
<layer name="a11" left=10 top=10 visibility=show bgcolor="#00ff00" clip="0,0,2,2"></layer>
<layer name="a12" left=10 top=10 visibility=show bgcolor="#0000ff" clip="0,0,2,2"></layer>
<layer name="a13" left=10 top=10 visibility=show bgcolor="#ff0000" clip="0,0,2,2"></layer>

<script language="**********">

/*
Document firework script (By Kurt Gregg, [email protected])
Modified granted to Dynamic Drive to feature script in archive
For full source and 100's more DHTML scripts, visit http://dynamicdrive.com
Visit our site at http://www.star28.com/ for more code
* This notice must stay intact for use */

if (document.all)
with(document){
write('<div id="starsDiv" style="position:absolute;top:0px;left:0px">')
write('<div style="position:relative;width:2px;height:2px;background: #ffffff;font-size:2px"></div>')
write('<div style="position:relative;width:1px;height:1px;background: #fff000;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background: #ffa000;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background: #ff00ff;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background: #00ff00;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background: #0000ff;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background: #FF0000;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background: #ffffff;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background: #fff000;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background: #ffa000;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background: #ff00ff;font-size:1px"></div>')
write('<div style="position:relative;width:2px;height:2px;background: #ff00ff;font-size:2px"></div>')
write('<div style="position:relative;width:1px;height:1px;background: #0000ff;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background: #FF0000;font-size:1px"></div>')
write('</div>')
}


var Clrs=new Array(9)
Clrs[0]='ff0000';
Clrs[1]='00ff00';
Clrs[2]='000aff';
Clrs[3]='ff00ff';
Clrs[4]='ffa500';
Clrs[5]='ffff00';
Clrs[6]='00ff00';
Clrs[7]='ffffff';
Clrs[8]='fffff0';
var sClrs=new Array(5)
sClrs[0]='ffa500';
sClrs[1]='55ff66';
sClrs[2]='AC9DFC';
sClrs[3]='fff000';
sClrs[4]='fffff0';
var yBase;
var xBase;
var step;
var currStep = 0;
var Xpos = 1;
var Ypos = 1;
var initialStarColor='ffa000';
var Mtop=250;
var Mleft=250;

function Fireworks() {
if (document.all)
{
yBase = window.document.body.offsetHeight/3;
xBase = window.document.body.offsetWidth/8;
}
else if (document.layers)
{
yBase = window.innerHeight/3;
xBase = window.innerWidth/8;
}
if (document.all)
{
step=5;
for ( i = 0 ; i < starsDiv.all.length ; i++ )
{
for (ai=0; ai < Clrs.length; ai++)
{
var c=Math.round(Math.random()*[ai]);
}
if (currStep < 90)
starsDiv.all[i].style.background=initialStarColor;
if (currStep > 90)
starsDiv.all[i].style.background=Clrs[c];
starsDiv.all[i].style.top = Mtop + yBase*Math.sin((currStep+i*5)/3)*Math.sin(550+currStep/100)
starsDiv.all[i].style.left = Mleft + yBase*Math.cos((currStep+i*5)/3)*Math.sin(550+currStep/100)
}
}
else if (document.layers)
{
step = 5;
for ( j = 0 ; j < 14 ; j++ ) //number of NS layers!
{
var templayer="a"+j
for (ai=0; ai < Clrs.length; ai++)
{
var c=Math.round(Math.random()*[ai]);
}
if (currStep < 90)
document.layers[templayer].bgColor=initialStarColor;
if (currStep > 90)
document.layers[templayer].bgColor=Clrs[c];
document.layers[templayer].top = Mtop + yBase*Math.sin((currStep+j*5)/3)*Math.sin(550+currStep/100)
document.layers[templayer].left = Mleft + yBase*Math.cos((currStep+j*5)/3)*Math.sin(550+currStep/100)
}
}
currStep+= step;
//window.status=currStep;
T=setTimeout("Fireworks()",5);
if (currStep==220)
{
currStep=-10;
for (n=0; n < sClrs.length; n++)
{
var k=Math.round(Math.random()*n);
}
initialStarColor=sClrs[k];
if (document.all)
{
Dtop=window.document.body.clientHeight-250;
Dleft=xBase*3.5;
Mtop=Math.round(Math.random()*Dtop);
Mleft=Math.round(Math.random()*Dleft);
document.all.starsDiv.style.top=Mtop+document.body .scrollTop;
document.all.starsDiv.style.left=Mleft+document.bo dy.scrollLeft;
}
else if (document.layers)
{
Dleft=window.innerWidth-100;
Dtop=window.innerHeight-100;
Mtop=Math.round(Math.random()*Dtop+window.pageYOff set);
Mleft=Math.round(Math.random()*Dleft+window.pageXO ffset);
document.layers[templayer].top=Mtop;
document.layers[templayer].left=Mleft;
}
if ((Mtop < 20) || (Mleft < 20))
{
Mtop+=90;
Mleft+=90;
}
}
}
if (document.all||document.layers)
Fireworks();

</script>

الأمير
05-12-2020, 03:25 PM
سَلَّمَتْ أناملكِم الذَّهَبِيَّةَ عَلَى الطَّرْحِ الرَّائِعِ الَّذِي
أَنَارَ صَفْحَاتِ مُنْتَدَى روآية عِشْقٌ بِكُلِّ مَاهُوِ جَديدٍ
لُكِمَ مَنِّيُّ أَرَقٍ وَأَجْمَلِ التَّحَايَا عَلَى هَذَا التَّأَلُّقِ وَالْأبْدَاعِ
وَالَّذِي هُوَ حليفكِم دُومَا " أَنَّ شَاءَ اللهُ
https://akhawat.islamway.net/forum/uploads/post-29061-1199813295.gif

شيخة رواية
05-12-2020, 03:32 PM
كل الشكر لكم على تواجدكم الجميل وردكم الرائع
دمتم بالف خير ..

برمود العراقي
05-12-2020, 06:45 PM
-

كل لشكر لك ل جمال م نثر
موودتي مع كل التقدير

:241:

رُّوحي بروحهُ
05-12-2020, 08:12 PM
يعطيك العافيه يارب , ع الموضوع
دمت ودام ابداعك ف سما عشق ...


..

عازف الليل مونامور
05-13-2020, 03:28 AM
تسلم الأيادي الماهـــرة
كل الشكر لجمال هذا الانتقاء
سلمت يمينكم وبورك هذا التميز
ارق التحايـــــا لكم واطيب الأمنيات
https://www.3b8-y.com/vb/images/smilies/100 (79).gifhttps://www.3b8-y.com/vb/images/smilies/w6w_20060309175028d0a11ee8.gifhttps://www.3b8-y.com/vb/images/smilies/w6w_20060309175028d0a11ee8.gifhttps://www.3b8-y.com/vb/images/smilies/100 (79).gif

جوهره
05-13-2020, 05:21 AM
يعطيك العافيه علي الطرح
بإنتظآر جديدك وعذب أطروحآتك

شيخة رواية
05-13-2020, 01:06 PM
كل الشكر لكم على تواجدكم الجميل وردكم الرائع
دمتم بالف خير ..

سمارا
05-14-2020, 01:29 AM
تسلم الأيادي على ما قدمت
ننتظر جديدك بكل شوق
تقبل مني أعطر التحايا

سمأأأأأرا

tarhal
05-14-2020, 04:31 AM
طرح قيم
تسلم
..:q-437:

شيخة رواية
05-15-2020, 12:58 PM
كل الشكر لكم على تواجدكم الجميل وردكم الرائع
دمتم بالف خير ..

ٲمنِـيَــةٌ
05-16-2020, 01:29 PM
،



موضوع في قمة الروعه
لطالما كانت مواضيعك متميزة
لا عدمنا التميز و روعة الاختيار
دمت لنا ودام تالقك الدائم

https://v.3bir.net/3bir/2008/02/image313-1.gif

نور القمر
05-16-2020, 02:29 PM
جلب راقي وانتقاء مميز
بوركت جهودك المثمرة
ولا حرمنا عطائك
ودي ..

شيخة رواية
05-18-2020, 12:10 PM
كل الشكر لكم على تواجدكم الجميل وردكم الرائع
دمتم بالف خير ..

ابوصالح S
11-07-2020, 10:03 PM
الله يعطيكـ الف عـافيهـ ع الموضوع الرئــع
لاحرمنا من آبدعاتكـ
تقبلو اطللتي البسيطه

شيخة رواية
11-10-2020, 11:28 AM
سعــدت بـ توآجدكـم هنــآ :23:
كــل آلوِد لك :34::34:[/color][/center][/center]

Şøķåŕą
08-25-2022, 07:15 AM
_



سلمت الأيادي ..
ويعطيك العافية لـ جمال الآنتقاء
لروحك جنائن الورد .

نور القمر
10-02-2023, 12:38 PM
عطآآآء بآذخ
متصفح رائع في كل شيء
ومتوج بالجمآل
سلم لنآ هذآ الإبدآع
لك أرق التحآيآ
وأعذبهآ

بنت العز
02-16-2024, 11:35 PM
سلمت الأيادي ..
ويعطيك العافية لـ جمال الآنتقاء
لروحك جنائن الورد .

Şøķåŕą
02-16-2024, 11:35 PM
شكراً لك
بإنتظار الجديد القادم
دمت بكل خير