كود العد التنازلي ( أيام , ساعات , دقائق, ثواني ) - الصفحة 3 - منتديات تراتيل شاعر

 ننتظر تسجيلك هـنـا

 

 

» ٌاليوم الوطني «  
     
..{ ::: فعاليات اليوم الوطني :::..}~
 
 


العودة   منتديات تراتيل شاعر > ๑۩۞۩๑ قسم التكنلوجيا ๑۩۞ > تطوير المواقع والمنتديات ▪●

تطوير المواقع والمنتديات ▪● ستايلات .. Style ستايل للنسخ 3.8.0 هاكات .. Product .. جميع البرامج لـ نسخ 3.7.0 .. جميع الاستيلات للنسخة الثالثه والرابعه

 
 
أدوات الموضوع إبحث في الموضوع انواع عرض الموضوع
Prev المشاركة السابقة   المشاركة التالية Next
#1  
قديم 08-30-2015, 08:46 PM
MS HMS غير متواجد حالياً
Saudi Arabia     Female
SMS ~ [ + ]
نامَتِ العُيُونُ
وَغارَتِ النُّجُومُ
وأنْتَ حَيٌّ قَيُّوم

سبحان الله
وبحمده سبحان
الله العظيم
لوني المفضل Gold
 رقم العضوية : 303
 تاريخ التسجيل : Aug 2014
 فترة الأقامة : 3696 يوم
 أخر زيارة : 08-28-2024 (12:35 AM)
 المشاركات : 213,724 [ + ]
 التقييم : 596367899
 معدل التقييم : MS HMS has a reputation beyond reputeMS HMS has a reputation beyond reputeMS HMS has a reputation beyond reputeMS HMS has a reputation beyond reputeMS HMS has a reputation beyond reputeMS HMS has a reputation beyond reputeMS HMS has a reputation beyond reputeMS HMS has a reputation beyond reputeMS HMS has a reputation beyond reputeMS HMS has a reputation beyond reputeMS HMS has a reputation beyond repute
بيانات اضافيه [ + ]
شكراً: 20,717
تم شكره 25,251 مرة في 9,303 مشاركة
افتراضي كود العد التنازلي ( أيام , ساعات , دقائق, ثواني )






هذا كود العد التنازلي للمنتديات

كود رائع ومفيد للأعضاء الذين ينتظرون زمن او نقطة بداية معينه

طبعاً بأمكان الجميع تغيير الغه التي يريد وكذالك تعيين الوقت والتاريخ لنقطة البداء للعد

:::::::::::

ضع هذا الكود بين وسمي ال <head>

كود:
<style style="text/css"> .lcdstyle{ /*Example CSS to create LCD countdown look*/ background-color:black; color:yellow; font: bold 18px MS Sans Serif; padding: 3px; } .lcdstyle sup{ /*Example CSS to create LCD countdown look*/ font-size: 80% } </style> <script type="text/javascript"> /*********************************************** * Dynamic Countdown script- © Dynamic Drive (http://www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit http://www.dynamicdrive.com/ for this script and 100s more. ***********************************************/ function cdtime(container, targetdate){ if (!document.getElementById || !document.getElementById(container)) return this.container=document.getElementById(container) this.currentTime=new Date() this.targetdate=new Date(targetdate) this.timesup=false this.updateTime() } cdtime.prototype.updateTime=function(){ var thisobj=this this.currentTime.setSeconds(this.currentTime.getSeconds()+1) setTimeout(function(){thisobj.updateTime()}, 1000) //update time every second } cdtime.prototype.displaycountdown=function(baseunit, functionref){ this.baseunit=baseunit this.formatresults=functionref this.showresults() } cdtime.prototype.showresults=function(){ var thisobj=this var timediff=(this.targetdate-this.currentTime)/1000 //difference btw target date and current date, in seconds if (timediff<0){ //if time is up this.timesup=true this.container.innerHTML=this.formatresults() return } var oneMinute=60 //minute unit in seconds var oneHour=60*60 //hour unit in seconds var oneDay=60*60*24 //day unit in seconds var dayfield=Math.floor(timediff/oneDay) var hourfield=Math.floor((timediff-dayfield*oneDay)/oneHour) var minutefield=Math.floor((timediff-dayfield*oneDay-hourfield*oneHour)/oneMinute) var secondfield=Math.floor((timediff-dayfield*oneDay-hourfield*oneHour-minutefield*oneMinute)) if (this.baseunit=="hours"){ //if base unit is hours, set "hourfield" to be topmost level hourfield=dayfield*24+hourfield dayfield="n/a" } else if (this.baseunit=="minutes"){ //if base unit is minutes, set "minutefield" to be topmost level minutefield=dayfield*24*60+hourfield*60+minutefield dayfield=hourfield="n/a" } else if (this.baseunit=="seconds"){ //if base unit is seconds, set "secondfield" to be topmost level var secondfield=timediff dayfield=hourfield=minutefield="n/a" } this.container.innerHTML=this.formatresults(dayfield, hourfield, minutefield, secondfield) setTimeout(function(){thisobj.showresults()}, 1000) //update results every second } /////CUSTOM FORMAT OUTPUT FUNCTIONS BELOW////////////////////////////// //Create your own custom format function to pass into cdtime.displaycountdown() //Use arguments[0] to access "Days" left //Use arguments[1] to access "Hours" left //Use arguments[2] to access "Minutes" left //Use arguments[3] to access "Seconds" left //The values of these arguments may change depending on the "baseunit" parameter of cdtime.displaycountdown() //For example, if "baseunit" is set to "hours", arguments[0] becomes meaningless and contains "n/a" //For example, if "baseunit" is set to "minutes", arguments[0] and arguments[1] become meaningless etc function formatresults(){ if (this.timesup==false){//if target date/time not yet met var displaystring=arguments[0]+" days "+arguments[1]+" hours "+arguments[2]+" minutes "+arguments[3]+" seconds left until March 23, 2009 18العد التنازلي أيام ساعات دقائق,00" } else{ //else if target date/time met var displaystring="Future date is here!" } return displaystring } function formatresults2(){ if (this.timesup==false){ //if target date/time not yet met var displaystring="<span class='lcdstyle'>"+arguments[0]+" <sup>days</sup> "+arguments[1]+" <sup>hours</sup> "+arguments[2]+" <sup>minutes</sup> "+arguments[3]+" <sup>seconds</sup></span> left until this Christmas" } else{ //else if target date/time met var displaystring="" //Don't display any text alert("Christmas is here!") //Instead, perform a custom alert } return displaystring } </script>
وضع هذا الكود بين وسمي <body>


كود:
<div id="countdowncontainer"></div> <br /> <div id="countdowncontainer2"></div> <script type="text/javascript"> var futuredate=new cdtime("countdowncontainer", "March 23, 2009 18العد التنازلي أيام ساعات دقائق,00") futuredate.displaycountdown("days", formatresults) var currentyear=new Date().getFullYear() //dynamically get this Christmas' year value. If Christmas already passed, then year=current year+1 var thischristmasyear=(new Date().getMonth()>=11 && new Date().getDate()>25)? currentyear+1 : currentyear var christmas=new cdtime("countdowncontainer2", "December 25, "+thischristmasyear+" 0:0:00") christmas.displaycountdown("days", formatresults2) </script>
مع تغيير اللغة الى ما يلزمك وكذلك تغيير التاريخ



;,] hgu] hgjkh.gd ( Hdhl < shuhj ]rhzr< e,hkd ) l[hg hgjkh.gd hgy] fkhkd ]rhzr shuhj




 توقيع : MS HMS


 

مواقع النشر (المفضلة)

الكلمات الدلالية (Tags)
مجال, التنازلي, الغد, بناني, دقائق, ساعات, كود

تعليمات المشاركة
لا تستطيع إضافة مواضيع جديدة
لا تستطيع الرد على المواضيع
لا تستطيع إرفاق ملفات
لا تستطيع تعديل مشاركاتك

BB code is متاحة
كود [IMG] متاحة
كود HTML معطلة

Forum Jump

المواضيع المتشابهه
الموضوع كاتب الموضوع المنتدى مشاركات آخر مشاركة
الغفلة عن الغد ! سراج المحبة نفحات آيمانية ▪● 12 02-14-2015 12:32 PM
ساعات عمل القطاع الخاص في رمضان 6 ساعات يومياً شموخ وايليه مُوجز آلآنبآء ▪● 13 06-30-2014 04:32 PM
سينصهرجليد الصمت‎ مع اشراقة شمس الغد منتهى الذوق زوايا عامه 14 03-29-2014 11:25 PM
أعتذر عن مقال الغد ♪ تْرآتْيِلَ آلروُحَ ♥♥ زوايا عامه 5 01-27-2014 09:07 PM

RSS RSS 2.0 XML MAP HTML

الساعة الآن 06:07 AM



Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd. TranZ By Almuhajir
HêĽм √ 3.2 OPS BY: ! ωαнαм ! © 2010
new notificatio by 9adq_ala7sas
User Alert System provided by Advanced User Tagging (Lite) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.

Security team

mamnoa 4.0 by DAHOM