hyperboleandahalf
Blog Archive
◄
2012
(18)
◄
فبراير
(18)
▼
2011
(130)
◄
نوفمبر
(3)
◄
أكتوبر
(1)
◄
أغسطس
(4)
◄
يونيو
(1)
▼
مايو
(37)
زر لعمل تحديث للصفحة
زر الوقت الذي قضيته بالصفحة
زر العودة للخلف
زر إغلاق الصفحة
زر لطباعة الصفحة
زر الصفحة الرئيسية
زر الإضافة الى المفضلة
خمسون نصيحة لزيادة الربح من أدسنس
عمل جروب على الفيس بوك
وصف للرابط مع الماوس 3
وصف للرابط مع الماوس1
وصف للرابط مع الماوس 2
وصف متحرك للرابط عند وضع مؤشر الماوس
وصف للرابط يظهر في أسفل الصفحة
وصلات تظهر بمرورالماوس
رابط يفتح بمرور الماوس
رابط لفتح نافذة جديدة
نص يتلون مع الماوس
نص تتغير ألوان حروفه بالتدريج
نص له خيال
كلام متحرك ضمن زر
نص مشع 2
كلام يأتي من اليمين الى منتصف الصفحة
كلام يتحرك من اليمين الى اليسار
كلام يتحرك من اليمين الى اليسار و بالعكس
كلام يتحرك من الأسفل الى الأعلى
كلام يتحرك من الأعلى الى الأسفل
رسائل تتغير ضمن مربع بشكل جميل
كود حكمة اليوم
نص يظهر بطريقة الآلة الكاتبة
خمسة رسائل تتبدل بالترتيب بشكل عمودي
أربع رسائل تظهر بالترتيب في أعلى الصفحة
نص بألوان قوس قزح
تاريخ أدسنس وأنواعة
معلومات هامة عن أدسنس
خطوات الأشتراك بجوجل أدسنس
:D
◄
أبريل
(63)
◄
فبراير
(9)
◄
يناير
(12)
◄
2010
(273)
◄
ديسمبر
(1)
◄
نوفمبر
(2)
◄
أكتوبر
(2)
◄
سبتمبر
(43)
◄
أغسطس
(94)
◄
يوليو
(2)
◄
يونيو
(2)
◄
مايو
(17)
◄
أبريل
(9)
◄
مارس
(66)
◄
فبراير
(21)
◄
يناير
(14)
◄
2009
(171)
◄
ديسمبر
(17)
◄
نوفمبر
(16)
◄
أكتوبر
(17)
◄
سبتمبر
(48)
◄
أغسطس
(7)
◄
يوليو
(12)
◄
يونيو
(30)
◄
مارس
(1)
◄
فبراير
(23)
◄
2008
(72)
◄
أغسطس
(63)
◄
يوليو
(5)
◄
يونيو
(4)
Subscribe To
المشاركات
Atom
المشاركات
تعليقات
Atom
تعليقات
السبت، 28 مايو 2011
زر الوقت الذي قضيته بالصفحة
زر الوقت الذي قضيته بالصفحة
طريقة التركيب
1- انسخ هذا الكود و ضعه في منطقة HEAD
<SCRIPT> <!-- Activate Cloaking Device var onHours = " "; var onMinutes = " "; var onSeconds = " "; var offHours = 0; var offMinutes = 0; var offSeconds = 0; var logSeconds = 0; var logMinutes = 0; var logHours = 0; var OnTimeValue = " "; var OffTimeValue = " "; var PageTimeValue = " "; // Back to previous page. function WinOpen() { getLogoffTime(); window.location="js-timet.htm" window.location="js-timet.htm" // double call for Mac users?? } // Loads HTML page to full window for View Source. function WinOpen1() { alert('View/Document Source from menu bar..., then close new window to return to this page. The animation of the radio buttons on the JavaScript index will be dead upon return. Reload the JavaScript page to get them going again. '); window.open("js-timer.htm","DisplayWindow","menubar=yes,scrollbars=yes"); } // Captures logon time. function getLogonTime() { var now = new Date(); // Used to display logon time. var ampm = (now.getHours() >= 12) ? " مساءً" : " صباحاً" var Hours = now.getHours(); Hours = ((Hours > 12) ? Hours - 12 : Hours); var Minutes = ((now.getMinutes() < 10) ? ":0" : ":") + now.getMinutes(); var Seconds = ((now.getSeconds() < 10) ? ":0" : ":") + now.getSeconds(); // String to display log-on time. OnTimeValue =(" " + Hours + Minutes + Seconds + " " + ampm); // Capture logon time for use in timer(). onHours = now.getHours(); onMinutes = now.getMinutes(); onSeconds = now.getSeconds(); } function getLogoffTime() { var now = new Date(); // Used to display logoff time. var ampm = (now.getHours() >= 12) ? " مساءً" : " صباحاً" var Hours = now.getHours(); Hours = ((Hours > 12) ? Hours - 12 : Hours); var Minutes = ((now.getMinutes() < 10) ? ":0" : ":") + now.getMinutes(); var Seconds = ((now.getSeconds() < 10) ? ":0" : ":") + now.getSeconds(); // String to display log-off time. OffTimeValue =(" " + Hours + Minutes + Seconds + " " + ampm); // Capture logoff time for use in timer(). offHours = now.getHours(); offMinutes = now.getMinutes(); offSeconds = now.getSeconds(); timer(); } // Compute difference between logoff time and logon time. function timer() { if (offSeconds >= onSeconds) { logSeconds = offSeconds - onSeconds; } else { offMinutes -= 1; logSeconds = (offSeconds + 60) - onSeconds; } if (offMinutes >= onMinutes) { logMinutes = offMinutes - onMinutes; } else { offHours -= 1; logMinutes = (offMinutes + 60) - onMinutes; } logHours = offHours - onHours; // Used to display time on page. logHours = ((logHours < 10) ? "0" : ":") + logHours; logMinutes = ((logMinutes < 10) ? ":0" : ":") + logMinutes; logSeconds = ((logSeconds < 10) ? ":0" : ":") +logSeconds; // String to display time on page. PageTimeValue =(" " + logHours + logMinutes + logSeconds); displayTimes(); } function displayTimes() { alert("\nوقت دخول الصفحة : " +OnTimeValue+"\n\nوقت الخروج : "+OffTimeValue+"\n\nالوقت الذي قضيته بالصفحة هو : " + PageTimeValue); } // Deactivate Cloaking --> </SCRIPT>
2- انسخ و الصق بعد BODY
<INPUT TYPE="button" value="كم الوقت الذي قضيته بالصفحة" onClick="getLogoffTime()">
3- عدل في وسم الجسم BODY ليصبح هكذا
<body onLoad="getLogonTime()">
0 التعليقات:
إرسال تعليق
رسالة أحدث
رسالة أقدم
الصفحة الرئيسية
الاشتراك في:
تعليقات الرسالة (Atom)
Popular Posts
زر لعمل تحديث للصفحة
زر لعمل تحديث للصفحة اضغط هنا لتحديث الصفحة طريقة التركيب انسخ هذا الكود و ضعه في المكان الذي تريده في منطقة BODY ...
هواية جمع الأقلام
لكل شخص هواياتة الخاصة ...فمثلا تجد شخص له هواية الصيد وأخر كرة القدم وأخر جمع الطوابع وكل هذة هوايات طبيعية ولكن أن تجد شخص له هواية جمع ال...
صور أبداع في أبداع
هنا سوف أعرض عليكم مجموعة من الصور التى عندما شاهدتها توقفت لمدة كبيرة من الوقت أتأمل كل صوورة فيها وأخذت من كل صورة فيها عبرة....نحن فى ه...
Don't Ever Fall Asleep Watching "Land of The Lost"
I think that I might finally have Swine Flu. I'm all achy and pokey. Most doctors don't understand what I mean when I say I'm f...
صور أكبر الحيوانات فى العالم
لقد خلق الله كل شىء بتدقيق عظيم فأنظر حولك وتأمل فستجد فى كل شىء جمال وتدقيق لم يأتى من محض الصدفة وأنما بيد خالق عظيم وهنا مجموعة من ال...
اربع طرق لفتح كمبيوتر مقفل برقم سري
اربع طرق لفتح كمبيوتر مقفل برقم سري طرق فتح كمبيوتر مقفل برقم سري احببت ان انقل لكم هذا الموضوع للأستفادة منه ليس لفتح كمبيوتر اشخاص ولكن رب...
Isabelle
I haven't posted in a couple days because I'm too sad to be funny. My pet rat, Isabelle, passed away last night after a heartbreaki...
I'm Definitely Not Dead
I woke up really early on Wednesday morning for no reason. In retrospect, I can see it was probably my body's way of telling me that I ...
It's Too Late to Apologize, Kyle... But Do You Still Want to See Me Strip?
Remember when I wrote that post responding to that guy named Kyle who called me ugly and unfunny and it was exactly like when Tyra Banks ...
النقد - كلمات مأثورة -كلمات مشهورة
النقد قبل أن تنقد أحداً، أمش بحذائه مسافة ميل. وبذلك، إذا غضب منك، فسوف يكون على بعد ميل وحافي القدمين... سارة جاكسون أي مجنون يستطيع أن ينق...
0 التعليقات:
إرسال تعليق