دليل الإشهار العربي
هل تريد التفاعل مع هذه المساهمة؟ كل ما عليك هو إنشاء حساب جديد ببضع خطوات أو تسجيل الدخول للمتابعة.

دخول

إذا كانت هذه أول زيارة لك في الإشهار العربي، نرجوا منك مراجعة قوانين المنتدى من خلال الضغط هنا وأيضاً يشرفنا انضمامك إلى أسرتنا الضخمة من خلال الضغط هنا.

ممكن كود تسقط الثلج

+4
مصري وأفتخر
Yassine Bablil
Da3ia AlSkeR
$ جون سينا $
8 مشترك

descriptionممكن كود تسقط الثلج  Emptyممكن كود تسقط الثلج

more_horiz
بسم اله الرحمن الرحيم وسلام عليكم

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

ممكن

في انتضركم

تحياتي ممكن كود تسقط الثلج  235873

descriptionممكن كود تسقط الثلج  Emptyرد: ممكن كود تسقط الثلج

more_horiz
تفضل :

الكود:

    <marquee behor="scroll" direction="down" scrollamount="3" style="position:absolute; left:120; top:50; width:25; height:450; z-index:645"><img src="http://illiweb.com/fa/pbucket.gif" border="0"></marquee>



طريقه تركيب الكود
ضيف الكود فى
تشكيلات عامه
وكل قسم فى الفئات والمنتديات


ممكن كود تسقط الثلج  235873

descriptionممكن كود تسقط الثلج  Emptyرد: ممكن كود تسقط الثلج

more_horiz
تورقى كتب:
تفضل :

الكود:

    <marquee behor="scroll" direction="down" scrollamount="3" style="position:absolute; left:120; top:50; width:25; height:450; z-index:645"><img src="http://illiweb.com/fa/pbucket.gif" border="0"></marquee>



طريقه تركيب الكود
ضيف الكود فى
تشكيلات عامه
وكل قسم فى الفئات والمنتديات


ممكن كود تسقط الثلج  235873


لكن لم يشتغل

لا يعمل

descriptionممكن كود تسقط الثلج  Emptyرد: ممكن كود تسقط الثلج

more_horiz
جرب هاذا :

الكود:

<script>
//Here you can add your own picture for snow. Just change the url
var snowsrc="[url=http://i13.servimg.com/u/f13/11/52/70/02/snowba10.png]http://i13.servimg.com/u/f13/11/52/70/02/snowba10.png[/url]"
//how many snowflakes there will be (currently 12)
var no =40;
//How fast will the snow disappear (0 is never)
var hidesnowtime = 0;
//The height the snow will reach before it disappears ("windowheight" or "pageheight")
var snowdistance = "pageheight";
///////////////////////////////End of Settings///////////////////////////////////
var ie4up = (document.all) ? 1 : 0;
var ns6up = (document.getElementById&&!document.all) ? 1 : 0;
function iecompattest()
{
  return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}
var dx, xp, yp;
var am, stx, sty;
var i, doc_width = 800, doc_height = 600;
 
if (ns6up)
{
  doc_width = self.innerWidth;
  doc_height = self.innerHeight;
}
else
if (ie4up)
{
  doc_width = document.body.clientWidth;
  doc_height = document.body.clientHeight;
}
dx = new Array();
xp = new Array();
yp = new Array();
am = new Array();
stx = new Array();
sty = new Array();
for (i = 0; i < no; ++ i)
{
  dx[i] = 0;
  xp[i] = Math.random()*(doc_width-50);
  yp[i] = Math.random()*doc_height;
  am[i] = Math.random()*20;
  stx[i] = 0.02 + Math.random()/10;
  sty[i] = 0.7 + Math.random();
  if (ie4up||ns6up)
  {
      if (i == 0)
      {
        document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;\"><a href=\"[url=http://rftactical.darkbb.com/index.htm/%22%3E%3Cimg]http://rftactical.darkbb.com/index.htm\"><img[/url] src='"+snowsrc+"' border=\"0\"><\/a><\/div>");
      }
      else
      {
        document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;\"><img src='"+snowsrc+"' border=\"0\"><\/div>");
      }
  }
}
function snowIE_NS6()
{
  doc_width = ns6up?window.innerWidth-10 : iecompattest().clientWidth-10;
  doc_height=(window.innerHeight && snowdistance=="windowheight")? window.innerHeight : (ie4up && snowdistance=="windowheight")?  iecompattest().clientHeight : (ie4up && !window.opera && snowdistance=="pageheight")? iecompattest().scrollHeight : iecompattest().offsetHeight;
  for (i = 0; i < no; ++ i)
  {
      yp[i] += sty[i];
      if (yp[i] > doc_height-50)
      {
        xp[i] = Math.random()*(doc_width-am[i]-30);
        yp[i] = 0;
        stx[i] = 0.02 + Math.random()/10;
        sty[i] = 0.7 + Math.random();
      }
      dx[i] += stx[i];
      document.getElementById("dot"+i).style.top=yp[i]+"px";
      document.getElementById("dot"+i).style.left=xp[i] + am[i]*Math.sin(dx[i])+"px";
  }
  snowtimer=setTimeout("snowIE_NS6()", 10);
}
function hidesnow()
{
  if (window.snowtimer) clearTimeout(snowtimer)
      for (i=0; i<no; i++) document.getElementById("dot"+i).style.visibility="hidden"
}
 
if (ie4up||ns6up)
{
  snowIE_NS6();
  if (hidesnowtime>0)
      setTimeout("hidesnow()", hidesnowtime*1000)
}
</script>
 

 








ضعه في الجافا و اذا لم يعمل ضعه بالتشكيلات العامة
ممكن كود تسقط الثلج  235873

descriptionممكن كود تسقط الثلج  Emptyرد: ممكن كود تسقط الثلج

more_horiz
او هاذا تفضل :

حصريا كود تساقط ثلوج في منتداك من تصميم وتطوير اخوكم Gta_cena



ممكن كود تسقط الثلج  235873

descriptionممكن كود تسقط الثلج  Emptyرد: ممكن كود تسقط الثلج

more_horiz
جرب هاذا :

الرمز:
<script>
//Here you can add your own picture for snow. Just change the url
var snowsrc="https://i.servimg.com/u/f13/11/52/70/02/snowba10.png"
//how many snowflakes there will be (currently 12)
var no =40;
//How fast will the snow disappear (0 is never)
var hidesnowtime = 0;
//The height the snow will reach before it disappears ("windowheight" or "pageheight")
var snowdistance = "pageheight";
///////////////////////////////End of Settings///////////////////////////////////
var ie4up = (document.all) ? 1 : 0;
var ns6up = (document.getElementById&&!document.all) ? 1 : 0;
function iecompattest()
{
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}
var dx, xp, yp;
var am, stx, sty;
var i, doc_width = 800, doc_height = 600;

if (ns6up)
{
doc_width = self.innerWidth;
doc_height = self.innerHeight;
}
else
if (ie4up)
{
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
dx = new Array();
xp = new Array();
yp = new Array();
am = new Array();
stx = new Array();
sty = new Array();
for (i = 0; i < no; ++ i)
{
dx[i] = 0;
xp[i] = Math.random()*(doc_width-50);
yp[i] = Math.random()*doc_height;
am[i] = Math.random()*20;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
if (ie4up||ns6up)
{
if (i == 0)
{
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;\"><a href=\"http://rftactical.darkbb.com/index.htm\"><img src='"+snowsrc+"' border=\"0\"><\/a><\/div>");
}
else
{
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;\"><img src='"+snowsrc+"' border=\"0\"><\/div>");
}
}
}
function snowIE_NS6()
{
doc_width = ns6up?window.innerWidth-10 : iecompattest().clientWidth-10;
doc_height=(window.innerHeight && snowdistance=="windowheight")? window.innerHeight : (ie4up && snowdistance=="windowheight")? iecompattest().clientHeight : (ie4up && !window.opera && snowdistance=="pageheight")? iecompattest().scrollHeight : iecompattest().offsetHeight;
for (i = 0; i < no; ++ i)
{
yp[i] += sty[i];
if (yp[i] > doc_height-50)
{
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
}
dx[i] += stx[i];
document.getElementById("dot"+i).style.top=yp[i]+"px";
document.getElementById("dot"+i).style.left=xp[i] + am[i]*Math.sin(dx[i])+"px";
}
snowtimer=setTimeout("snowIE_NS6()", 10);
}
function hidesnow()
{
if (window.snowtimer) clearTimeout(snowtimer)
for (i=0; i<no; i++) document.getElementById("dot"+i).style.visibility="hidden"
}

if (ie4up||ns6up)
{
snowIE_NS6();
if (hidesnowtime>0)
setTimeout("hidesnow()", hidesnowtime*1000)
}
</script>



او هاذا تفضل :

حصريا كود تساقط ثلوج في منتداك من تصميم وتطوير اخوكم Gta_cena





والله مايشتغل

لايعمل

ارجوك تورقى سعدني dddddddd

descriptionممكن كود تسقط الثلج  Emptyرد: ممكن كود تسقط الثلج

more_horiz
وينكم

descriptionممكن كود تسقط الثلج  Emptyرد: ممكن كود تسقط الثلج

more_horiz
اخي الكود هاذا يعمل :

حصريا كود تساقط ثلوج في منتداك من تصميم وتطوير اخوكم Gta_cena
ممكن كود تسقط الثلج  235873

descriptionممكن كود تسقط الثلج  Emptyرد: ممكن كود تسقط الثلج

more_horiz
اخي اتبع الرابط الدي اعطاه لك الأخ تورقي

حصريا كود تساقط ثلوج في منتداك من تصميم وتطوير اخوكم Gta_cena

فهو شغال 100 في 100

descriptionممكن كود تسقط الثلج  Emptyرد: ممكن كود تسقط الثلج

more_horiz
gta_cena كتب:
اخي اتبع الرابط الدي اعطاه لك الأخ تورقي

حصريا كود تساقط ثلوج في منتداك من تصميم وتطوير اخوكم Gta_cena

فهو شغال 100 في 100



والله مايشتغل

لايعمل

descriptionممكن كود تسقط الثلج  Emptyرد: ممكن كود تسقط الثلج

more_horiz
ممكن كود تسقط الثلج  F275229e50c81cbe34937c455860d8c7

descriptionممكن كود تسقط الثلج  Emptyرد: ممكن كود تسقط الثلج

more_horiz
$ جون سينا $ كتب:
ممكن كود تسقط الثلج  F275229e50c81cbe34937c455860d8c7


اخي ما علاقة الصورة بالموضوع

descriptionممكن كود تسقط الثلج  Emptyرد: ممكن كود تسقط الثلج

more_horiz
لان لم يتم الحل

اين الكود

descriptionممكن كود تسقط الثلج  Emptyرد: ممكن كود تسقط الثلج

more_horiz
أنا جربت الكود
ولايعمل

descriptionممكن كود تسقط الثلج  Emptyرد: ممكن كود تسقط الثلج

more_horiz
مصري وأفتخر كتب:
أنا جربت الكود
ولايعمل


الحمد الله معي واحد شاهد

descriptionممكن كود تسقط الثلج  Emptyرد: ممكن كود تسقط الثلج

more_horiz
انا جربته لم يعمل

descriptionممكن كود تسقط الثلج  Emptyرد: ممكن كود تسقط الثلج

more_horiz
جارى عن بحث اخر gg444g

descriptionممكن كود تسقط الثلج  Emptyرد: ممكن كود تسقط الثلج

more_horiz
محمد ماجد


انا جربته لم يعمل


الان 2

وينكم

descriptionممكن كود تسقط الثلج  Emptyرد: ممكن كود تسقط الثلج

more_horiz

كود الثلج 2











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



1- انسخ هذا الكود و ضعه في منطقة HEAD

<STYLE>.drop {
FONT-SIZE: 40px; FILTER: flipV(), flipH(); WIDTH: 3px; COLOR: blue; POSITION: absolute
}
</STYLE>

<SCRIPT language=javascript>

// Rain/Snow effect- By Craig Blanchette Craiga.topcities.com
// Script featured on Dynamic Drive
// Visit our site at http://www.star28.com/ for more code

snow = true; // false-rain; true-snow
snowsym = " * " //These are the symbols for each
rainsym = " ' " //You can put images here.
howmany = 10 //How many drops/snowflakes?

/**************Do not need to change anything below***********/
if(snow){sym = snowsym; speed=1; angle=10; drops=howmany}
else{sym = rainsym; speed=50; drops=howmany; angle=6}
movex = -speed/angle; movey = speed; count = 0;

function moverain(){
for(move = 0; move < drops; move++){
xx[move]+=movex; yy[move]+=mv[move];
hmm = Math.round(Math.random()*1);
if(xx[move] < 0){xx[move] = maxx+10;}
if(yy[move] > maxy){yy[move] = 10;}
drop[move].left = xx[move]
drop[move].top = yy[move]+document.body.scrollTop;
}setTimeout('moverain()','1')}

</SCRIPT>







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


<SCRIPT language=javascript>

if (document.all){
drop = new Array(); xx = new Array(); yy = new Array(); mv = new Array()
ly = "document.all['"; st = "'].style"
for(make = 0; make < drops; make++){
document.write('<div id="drop'+make+'" class=drop>'+sym+'</div>');
drop[make] = eval(ly+'drop'+make+st);
maxx = document.body.clientWidth-40
maxy = document.body.clientHeight-40
xx[make] = Math.random()*maxx;
yy[make] = -100-Math.random()*maxy;
drop[make].left = xx[make]
drop[make].top = yy[make]
mv[make] = (Math.random()*5)+speed/4;
drop[make].fontSize = (Math.random()*10)+20;
if(snow){col = 'white'}else{col = 'blue'}
drop[make].color = col;
}
window.onload=moverain
}
</SCRIPT>



اتمنى ان يعمل ممكن كود تسقط الثلج  235873

descriptionممكن كود تسقط الثلج  Emptyرد: ممكن كود تسقط الثلج

more_horiz
هل تم الحل بانتظار ردك

descriptionممكن كود تسقط الثلج  Emptyرد: ممكن كود تسقط الثلج

more_horiz
منطقة BODY

اين تقع

descriptionممكن كود تسقط الثلج  Emptyرد: ممكن كود تسقط الثلج

more_horiz
مرحبا بك عزيزى فى دليل اشهار المنتديات

فى قسم ساحة الدعم

والآن, للإجابة على سؤالك مرة اخرى ,......

شرح طريقة وضع الاكواد فى الصفحة الرئيسية والبوابة



ممكن كود تسقط الثلج  1327753598571

هل تم الحل بانتظار ردك

دليل الاشهار

قاهر المساعدة
ممكن كود تسقط الثلج  235873
ممكن كود تسقط الثلج  Qet99710

descriptionممكن كود تسقط الثلج  Emptyرد: ممكن كود تسقط الثلج

more_horiz
داخل هذا الوسم كل محتويات الصفحة (مع head) وهو موجود في كل صفحة هتمل
أضغط تحرير ... بحث body وستجدة

descriptionممكن كود تسقط الثلج  Emptyرد: ممكن كود تسقط الثلج

more_horiz
تم الحل

شكرا لكم واسف علي الازعج ممكن كود تسقط الثلج  235873

ممكن كود تسقط الثلج  398867

descriptionممكن كود تسقط الثلج  Emptyرد: ممكن كود تسقط الثلج

more_horiz
$ جون سينا $ كتب:
تم الحل

شكرا لكم واسف علي الازعج ممكن كود تسقط الثلج  235873

ممكن كود تسقط الثلج  398867



بالتوفيق لك
تم الحل
يغلق ممكن كود تسقط الثلج  2726535510



privacy_tip صلاحيات هذا المنتدى:
لاتستطيع الرد على المواضيع في هذا المنتدى

جميع الحقوق محفوظة لدليل الاشهار العربي