مجموعة اكواد جافا سكربت ممتازه (100 حوالي)

كل ما يهم مطور المواقع ... لغات برمجة المواقع .. سكربتات .. مناقشات ..
مغلق
expertsniper
عضو نشيط
مشاركات: 186
اشترك في: 09 نوفمبر 2005, 09:35

مجموعة اكواد جافا سكربت ممتازه (100 حوالي)

مشاركة بواسطة expertsniper »

السلام عليكم

اردت ان اقدم شئ ولم اجد في جعبتي اجمل من مجموعة اسكربتات يستفيد منها الجميع

المجموعه مضغوطه ببرنامج الزيب Zip


الملف في المرفقات


مثال

كود للكتابه المشعه

كود: تحديد الكل

<p><span id="theText" style="width:100%"> </p>

<p align="center"><font color="#FFF9F2" size="5"
face="Monotype Koufi"><strong>جافا الفنان</strong></font><font color="#FFF9F2" size="4"
face="Tahoma"><strong> </strong></font><font color="#FFF9F2"
size="6"><strong>  </span><script language="JavaScript"><!--

/*
جافا الفنان
www.alfnnan.net
*/


//range of glowing
var from = 3;
var to = 7;

//speed of pulsing
var delay = 85;

//color of glow, name or RGB value (example:'#')
var glowColor = "#FFBC6A";


//NO MORE EDITING!!!
var i = to;
var j = 0;

//can be called here or whenever you want the text to start pulsing
textPulseDown();

function textPulseUp()
{
if (!document.all)
return
if (i < to)
{
theText.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")";
i++;
theTimeout = setTimeout('textPulseUp()',delay);
return 0;
}

if (i = to)
{
theTimeout = setTimeout('textPulseDown()',delay);
return 0;
}


}

function textPulseDown()
{
if (!document.all)
return
if (i > from)
{
theText.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")";
i--;
theTimeout = setTimeout('textPulseDown()',delay);
return 0;
}

if (i = from)
{
theTimeout = setTimeout('textPulseUp()',delay);
return 0;
}
}

// --></script> </strong></font></p>

ارجوا ان تنال اعجابكم

تقبلوا تحياتي :wink:
web-dv
عضو مفيد جداً
مشاركات: 564
اشترك في: 01 سبتمبر 2005, 20:44

مشاركة بواسطة web-dv »

جزاك الله خيراً
مشاركاتك مفيدة جداً
expertsniper
عضو نشيط
مشاركات: 186
اشترك في: 09 نوفمبر 2005, 09:35

مشاركة بواسطة expertsniper »

نورة الموضوع اخي العزيز web-dv

رغم كلامك انا احس بتقصير لما تقدمه لي موقع مثل

http://www.moffed
http://www.phpbbarabia.com
http://www.plus4arab.com

لانها قدمت لي المعلومه الاكيده بدون لا مقابل غير زيارتهم

وياله من كرم ...

فجيب لهم الشكر

وشكراً لمرورك اخي web-dv

فيك شئ مميز وهي اخلاقك وروحك العاليه بارك الله فيك

تقبل تحياتي :wink:
مغلق