كود كم تبقى على دخول شهر رمضان 2012 - 1433 Hitskin_logo Hitskin.com

هذه مُجرَّد مُعاينة لتصميم تم اختياره من موقع Hitskin.com
تنصيب التصميم في منتداكالرجوع الى صفحة بيانات التصميم

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

شبكه الدعم والتطوير

اشــهــار _ اكواد _ فوتوشوب _ برامج _ اسلاميات _افلام_ برامج _ العاب
 
الرئيسيةالبوابةأحدث الصورالتسجيلدخول

 

 كود كم تبقى على دخول شهر رمضان 2012 - 1433

اذهب الى الأسفل 
+3
شبكة الدعم
MaHer
جهاد الاسطوري
7 مشترك
كاتب الموضوعرسالة
جهاد الاسطوري
المدير الــعام
المدير الــعام
جهاد الاسطوري


عدد المساهمات : 66
نقاط التميز : 104
تاريخ التسجيل : 14/07/2012
العمر : 24
الموقع : مصر ام الدنيا

كود كم تبقى على دخول شهر رمضان 2012 - 1433 Empty
مُساهمةموضوع: كود كم تبقى على دخول شهر رمضان 2012 - 1433   كود كم تبقى على دخول شهر رمضان 2012 - 1433 I_icon_minitimeالسبت يوليو 14, 2012 8:40 pm

السلام عليكم و رحمة الله و بركاته

كود كم تبقى على دخول شهر رمضان 2012 - 1433


الكود


<script type="text/javascript">
var rainbowcount = 0;
var glitcount=0;
var glitstring='';
var shimmercount=0;
var shimmerstring='';
var ie4 = false;
if(document.all) {
ie4 = true;
}
function setContent(name, value) {
var d;
if (ie4) {
d = document.all[name];
} else {
d = document.getElementById(name);
}
d.innerHTML = value;
}

function getContent(name) {
var d;
if (ie4) {
d = document.all[name];
} else {
d = document.getElementById(name);
}
return d.innerHTML;
}

function setColor(name, value) {
var d;
if (ie4) {
d = document.all[name];
} else {
d = document.getElementById(name);
}
d.style.color = value;
}

function getColor(name) {
var d;
if (ie4) {
d = document.all[name];
} else {
d = document.getElementById(name);
}
return d.style.color;
}
function toSpans(span) {
var str=span.firstChild.data;
var a=str.length;
span.removeChild(span.firstChild);
for(var i=0; i<a; i++) {
var theSpan=document.createElement("SPAN");
theSpan.appendChild(document.createTextNode(str.charAt(i)));
span.appendChild(theSpan);
}
}
function glitter(name, col, speed) {
var value = getContent(name);
while ( value.indexOf(" ", "-10") != (-1) ) {
var value = value.replace(" ", "");
};
if (value.indexOf('<span') >= 0) { return; }
var length = 0;
var str = '';
var ch;
var token = '';
var htmltag = false;
for (i = 0; i < value.length; i++) {
ch = value.substring(i, i+1);
if (i < value.length - 1) { nextch = value.substring(i+1, i+2); } else { nextch = ' '; }
token += ch;
if (ch == '<' && '/aAbBpPhHiIoOuUlLtT'.indexOf(nextch) >= 0) { htmltag = true; }
if (ch == '>' && htmltag) { htmltag = false; }
if (!htmltag && ch.charCodeAt(0) > 30 && ch != ' ' && ch != '\n') {
str += '<span id="' + name + '_' + length + '">' + token + '</span>';
token = '';
length++;
}
}
setContent(name, str);
glitcommand = 'glitterloop('' + name + '', ' + length + ', 0, 1, '' + col + '', ' + speed + ')';
setTimeout(glitcommand , speed);
}
function shine(name, col, speed) {
var value = getContent(name);
while ( value.indexOf(" ", "-10") != (-1) ) {
var value = value.replace(" ", "");
};
if (value.indexOf('<span') >= 0) { return; }
var length = 0;
var str = '';
var ch;
var token = '';
var htmltag = false;
for (i = 0; i < value.length; i++) {
ch = value.substring(i, i+1);
if (i < value.length - 1) { nextch = value.substring(i+1, i+2); } else { nextch = ' '; }
token += ch;
if (ch == '<' && '/aAbBpPhHiIoOuUlLtT'.indexOf(nextch) >= 0) { htmltag = true; }
if (ch == '>' && htmltag) { htmltag = false; }
if (!htmltag && ch.charCodeAt(0) > 30 && ch != ' ' && ch != '\n') {
str += '<span id="' + name + '_' + length + '">' + token + '</span>';
token = '';
length++;
}
}
setContent(name, str);
shinecommand = 'shineloop('' + name + '', ' + length + ', 0, 1, '' + col + '', ' + speed + ')';
setTimeout(shinecommand , speed);
}
function RainbowSpan(span, hue, deg, brt, spd, hspd) {
this.deg=(deg==null?360:Math.abs(deg));
this.hue=(hue==null?0:Math.abs(hue)%360);
this.hspd=(hspd==null?3:Math.abs(hspd)%360);
this.length=span.firstChild.data.length;
this.span=span;
this.speed=(spd==null?50:Math.abs(spd));
this.hInc=this.deg/this.length;
this.brt=(brt==null?255:Math.abs(brt)%256);
this.timer=null;
toSpans(span);
this.moveRainbow();
}
RainbowSpan.prototype.moveRainbow = function() {
if(this.hue>359) this.hue-=360;
var color;
var b=this.brt;
var a=this.length;
var h=this.hue;

for(var i=0; i<a; i++) {

if(h>359) h-=360;

if(h<60) { color=Math.floor(((h)/60)*b); red=b;grn=color;blu=0; }
else if(h<120) { color=Math.floor(((h-60)/60)*b); red=b-color;grn=b;blu=0; }
else if(h<180) { color=Math.floor(((h-120)/60)*b); red=0;grn=b;blu=color; }
else if(h<240) { color=Math.floor(((h-180)/60)*b); red=0;grn=b-color;blu=b; }
else if(h<300) { color=Math.floor(((h-240)/60)*b); red=color;grn=0;blu=b; }
else { color=Math.floor(((h-300)/60)*b); red=b;grn=0;blu=b-color; }

h+=this.hInc;

this.span.childNodes[i].style.color="rgb("+red+", "+grn+", "+blu+")";
}
this.hue+=this.hspd;
}
function shineloop(name, length, ind, delta, col, speed) {
var next = ind + delta;
if (next >= length) { delta = delta * -1; next = ind + delta; }
if (next < 0) { delta = delta * -1; next = ind + delta; }
setColor(name + '_' + ind, getColor(name + '_' + next));
setColor(name + '_' + next, col);
shinecommand = 'shineloop('' + name + '', ' + length + ', ' + next + ', ' + delta + ', '' + col + '', ' + speed + ')';
setTimeout(shinecommand , speed);
}

function glitterloop(name, length, ind, delta, col, speed) {
var new_spd = Math.floor(Math.random()*31);
var new_spd = (new_spd - 15);
var new_spd = (new_spd + speed);
var next = Math.floor(Math.random()*(length+1));
if (next >= length) { delta = delta * -1; next = (-1); }
if (next < 0) { delta = delta * -1; next = 1; }
setColor(name + '_' + ind, getColor(name + '_' + next));
setColor(name + '_' + next, col);
glitcommand = 'glitterloop('' + name + '', ' + length + ', ' + next + ', ' + delta + ', '' + col + '', ' + speed + ')';
setTimeout(glitcommand , new_spd);
}
</script>

<!-- هاك العد التنازلى من الطائر الحر - برمجه a7la-7ekaya -->
<div align="center">

<script type="text/javascript">
function setcountdown(theyear,themonth,theday)
{
yr = theyear;
mo = themonth;
da = theday;
}

setcountdown(2012,7,21);
var occasion = "المتبقى على شهر رمضان";
var message_on_occasion = "رمـــــضــــــان كــــــريــــــم";
var countdownwidth = '480px';
var countdownheight = '20px';
var opentags = '<font face="Arial" size="5" color="#FF0000"><strong>';
var closetags = '</strong></font>';
var montharray = new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
var crosscount = '';

function start_countdown()
{
if (document.layers)
{
document.countdownnsmain.visibility = "show";
}
else if (document.all||document.getElementById)
{
crosscount = document.getElementById&&!document.all ? document.getElementById("countdownie") : countdownie;
}
countdown();
}

if (document.all||document.getElementById)
{
document.write('<span id="countdownie" style="width:' + countdownwidth + ';"></span>');
}

window.onload = start_countdown;

function countdown()
{
var today = new Date();
var todayy = today.getYear();

if (todayy < 1000)
{
todayy += 1900;
}

var todaym = today.getMonth();
var todayd = today.getDate();
var todayh = today.getHours();
var todaymin = today.getMinutes();
var todaysec = today.getSeconds();
var todaystring = montharray[todaym] + " " + todayd + ", " + todayy + " " + todayh + ":" + todaymin + ":" + todaysec;
futurestring = montharray[mo-1] + " " + da + ", " + yr;
dd = Date.parse(futurestring)-Date.parse(todaystring);
dday = Math.floor(dd / (60 * 60 * 1000 * 24) * 1);
dhour = Math.floor((dd % (60 * 60 * 1000 * 24)) / (60 * 60 * 1000) * 1);
dmin = Math.floor(((dd % (60 * 60 * 1000 * 24)) % (60 * 60 * 1000)) / (60 * 1000) * 1);
dsec = Math.floor((((dd % (60 * 60 * 1000 * 24)) % (60 * 60 * 1000)) % (60 * 1000)) / 1000 * 1);

if (dday <= 0 && dhour <= 0 && dmin <= 0 && dsec <= 1 && todayd == da)
{
if (document.layers)
{
document.countdownnsmain.document.countdownnssub.document.write(opentags+message_on_occasion+closetags);
document.countdownnsmain.document.countdownnssub.document.close();
}
else if (document.all||document.getElementById)
{
crosscount.innerHTML = opentags + message_on_occasion + closetags;
}
return;
}
else if (dday <= -1)
{
if (document.layers)
{
document.countdownnsmain.document.countdownnssub.document.write(opentags + "" + closetags);
document.countdownnsmain.document.countdownnssub.document.close();
}
else if (document.all||document.getElementById)
{
crosscount.innerHTML = opentags + "" + closetags;
}
return;
}
else
{
if (document.layers)
{
document.countdownnsmain.document.countdownnssub.document.write(opentags + occasion + " " + dday + " يوم و " + dhour + " ساعة و " + dmin + " دقيقة و " + dsec + " ثانية " + closetags);
document.countdownnsmain.document.countdownnssub.document.close();
}
else if (document.all||document.getElementById)
{
crosscount.innerHTML = opentags + occasion + " " + dday + " يوم و " + dhour + " ساعة و " + dmin + " دقيقة و " + dsec + " ثانية " + closetags;
}
}
setTimeout("countdown()", 1000);
}
</script>
</div>
<!-- / هاك العد التنازلى من الطائر الحر - برمجه a7la-7ekaya -->
المصدر منتدي الدعم والمساعدة
الرجوع الى أعلى الصفحة اذهب الى الأسفل
MaHer
...::|عضو نشيط|::...
avatar


عدد المساهمات : 38
نقاط التميز : 38
تاريخ التسجيل : 14/07/2012

كود كم تبقى على دخول شهر رمضان 2012 - 1433 Empty
مُساهمةموضوع: رد: كود كم تبقى على دخول شهر رمضان 2012 - 1433   كود كم تبقى على دخول شهر رمضان 2012 - 1433 I_icon_minitimeالسبت يوليو 14, 2012 9:55 pm

تسلم على الكود
الرجوع الى أعلى الصفحة اذهب الى الأسفل
شبكة الدعم
المدير الــعام
المدير الــعام
شبكة الدعم


عدد المساهمات : 94
نقاط التميز : 104
تاريخ التسجيل : 15/07/2012
العمر : 25
الموقع : شبكة الدعم والتطوير

كود كم تبقى على دخول شهر رمضان 2012 - 1433 Empty
مُساهمةموضوع: رد: كود كم تبقى على دخول شهر رمضان 2012 - 1433   كود كم تبقى على دخول شهر رمضان 2012 - 1433 I_icon_minitimeالأحد يوليو 15, 2012 9:08 am

جزاك الله خيرا
الرجوع الى أعلى الصفحة اذهب الى الأسفل
https://dam-tatwir.0wn0.com/
جهاد الاسطوري
المدير الــعام
المدير الــعام
جهاد الاسطوري


عدد المساهمات : 66
نقاط التميز : 104
تاريخ التسجيل : 14/07/2012
العمر : 24
الموقع : مصر ام الدنيا

كود كم تبقى على دخول شهر رمضان 2012 - 1433 Empty
مُساهمةموضوع: رد: كود كم تبقى على دخول شهر رمضان 2012 - 1433   كود كم تبقى على دخول شهر رمضان 2012 - 1433 I_icon_minitimeالإثنين يوليو 16, 2012 3:15 pm

شكرا لكم
الرجوع الى أعلى الصفحة اذهب الى الأسفل
MeGa DeSiGn
فريق الابداع
فريق الابداع
avatar


عدد المساهمات : 6
نقاط التميز : 6
تاريخ التسجيل : 15/07/2012

كود كم تبقى على دخول شهر رمضان 2012 - 1433 Empty
مُساهمةموضوع: رد: كود كم تبقى على دخول شهر رمضان 2012 - 1433   كود كم تبقى على دخول شهر رمضان 2012 - 1433 I_icon_minitimeالإثنين يوليو 16, 2012 3:54 pm

تسلم
الرجوع الى أعلى الصفحة اذهب الى الأسفل
admin
المدير الــعام
المدير الــعام
avatar


عدد المساهمات : 67
نقاط التميز : 80
تاريخ التسجيل : 11/07/2012

كود كم تبقى على دخول شهر رمضان 2012 - 1433 Empty
مُساهمةموضوع: رد: كود كم تبقى على دخول شهر رمضان 2012 - 1433   كود كم تبقى على دخول شهر رمضان 2012 - 1433 I_icon_minitimeالثلاثاء يوليو 17, 2012 9:02 am

جزاك الله خير
الرجوع الى أعلى الصفحة اذهب الى الأسفل
https://dam-tatwir.0wn0.com
aminaeroca
النائب العام
النائب العام
aminaeroca


عدد المساهمات : 139
نقاط التميز : 213
تاريخ التسجيل : 15/07/2012
العمر : 24
الموقع : www.dam-tatwir.0wn0.com

كود كم تبقى على دخول شهر رمضان 2012 - 1433 Empty
مُساهمةموضوع: رد: كود كم تبقى على دخول شهر رمضان 2012 - 1433   كود كم تبقى على دخول شهر رمضان 2012 - 1433 I_icon_minitimeالثلاثاء يوليو 17, 2012 9:12 am

جزاك الله خير
الرجوع الى أعلى الصفحة اذهب الى الأسفل
حمبراوي و أفتخر
المدير الــعام
المدير الــعام
avatar


عدد المساهمات : 110
نقاط التميز : 99999
تاريخ التسجيل : 14/07/2012

كود كم تبقى على دخول شهر رمضان 2012 - 1433 Empty
مُساهمةموضوع: رد: كود كم تبقى على دخول شهر رمضان 2012 - 1433   كود كم تبقى على دخول شهر رمضان 2012 - 1433 I_icon_minitimeالثلاثاء يوليو 17, 2012 7:55 pm

جزاك الله خير
الرجوع الى أعلى الصفحة اذهب الى الأسفل
جهاد الاسطوري
المدير الــعام
المدير الــعام
جهاد الاسطوري


عدد المساهمات : 66
نقاط التميز : 104
تاريخ التسجيل : 14/07/2012
العمر : 24
الموقع : مصر ام الدنيا

كود كم تبقى على دخول شهر رمضان 2012 - 1433 Empty
مُساهمةموضوع: رد: كود كم تبقى على دخول شهر رمضان 2012 - 1433   كود كم تبقى على دخول شهر رمضان 2012 - 1433 I_icon_minitimeالأربعاء يوليو 18, 2012 10:35 am

شكرا لردكم
الرجوع الى أعلى الصفحة اذهب الى الأسفل
 
كود كم تبقى على دخول شهر رمضان 2012 - 1433
الرجوع الى أعلى الصفحة 
صفحة 1 من اصل 1
 مواضيع مماثلة
-
» كود دخول الدردشة تلقائيآ
» نكتــــــــــ 2012
» حدثنا عن رمضان في - بلدك -
» مختصر حول حكم التهنئة بشهر رمضان
» طلب ستايل إحترافي جداجدا ل رمضان

صلاحيات هذا المنتدى:لاتستطيع الرد على المواضيع في هذا المنتدى
شبكه الدعم والتطوير :: خدماتنا التطويرية ::   :: اكواد هتمل | Html-
انتقل الى: