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
اليوغا لتخفيف الوزن
اليوغا لتخفيف الوزن ----------------- . الأفراد الذين يمارسون اليوغا يحترمون أجسادهم. أظهرت دراسة جديدة أن ممارسة اليوغا تحمي من الوزن ا...
It's Game Time! Vote For the Winner!
I challenged my fellow blogger, Kaloo , to a duel. The idea is that our readers will vote for which of the following MS paint creatures wou...
صور أبداع في أبداع
هنا سوف أعرض عليكم مجموعة من الصور التى عندما شاهدتها توقفت لمدة كبيرة من الوقت أتأمل كل صوورة فيها وأخذت من كل صورة فيها عبرة....نحن فى ه...
I Find. *UPDATED*
You know how hawks are really talented at eyesight? I'm like that except with finding things. As a child, I was a ferocious Hide-and-g...
The Alot is Better Than You at Everything
As a grammatically conscientious person who frequents internet forums and YouTube, I have found it necessary to develop a few coping mechani...
Netscape 9.0.0.6
Netscape began by trying to make an Internet that users found easy to use. Today we offer integrations of intuitive digital tools, innovativ...
Les professions vol4 المهن باللغة الفرنسية
Robot
So I just remembered that I have to go to the dentist again today and suffer through the judging all over again -- only it's going to be...
Eudora 8.0.0 Beta 3
Eudora is the best email program for people who get lots of email. If you're not one of those people now, you will be soon. So, take con...
Dogs Don't Understand Basic Concepts Like Moving
Packing all of your belongings into a U-Haul and then transporting them across several states is nearly as stressful and futile as trying to...
0 التعليقات:
إرسال تعليق