منتديات ريماس المحبة
اهلا وسهلا بك ايها الزائر الكريم... انت في منتديات ريماس المحبة ...يمكنك مشاهدة جميع أقسام المنتدى ((كزائر))

لكن لا يمكنك المشاركة بالمواضيع إلا بعد التسجيل

اذا كنت تملك عضوية في منتديات ريماس المحبة اختر ((دخول))

اذا كنت ترغب بأن تصبح عضو في منتديات ريماس المحبة اختر ((تسجيل))

مع تحيات ادارة المنتدى...نبع الحياة
منتديات ريماس المحبة
اهلا وسهلا بك ايها الزائر الكريم... انت في منتديات ريماس المحبة ...يمكنك مشاهدة جميع أقسام المنتدى ((كزائر))

لكن لا يمكنك المشاركة بالمواضيع إلا بعد التسجيل

اذا كنت تملك عضوية في منتديات ريماس المحبة اختر ((دخول))

اذا كنت ترغب بأن تصبح عضو في منتديات ريماس المحبة اختر ((تسجيل))

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

منتديات ريماس المحبة

فلسطيني - ثقافي - ترفيهي - تعليمي - اجتماعي - رياضي - شبابي - منوع
 
الرئيسيةالبوابةأحدث الصورالتسجيلدخول

 

 صورة تهبط الى الشاشة مثل الكرة

اذهب الى الأسفل 
كاتب الموضوعرسالة
Admin
المدير العام - منتديات ريماس المحبة
المدير العام - منتديات ريماس المحبة
Admin


عدد المساهمات : 1651
النقاط : 0
تاريخ التسجيل : 09/04/2012
العمر : 44
الموقع : فلسطين-نابلس

صورة تهبط الى الشاشة مثل الكرة Empty
مُساهمةموضوع: صورة تهبط الى الشاشة مثل الكرة   صورة تهبط الى الشاشة مثل الكرة I_icon_minitimeالسبت أغسطس 25, 2012 6:44 pm

الكود:
<script language="JavaScript1.2">
// Original: Dragos Saracu ([url=http://arcode.yoo7.com/mailto:smardoi@yahoo.com][color=#8d38c9]smardoi@yahoo.com[/color][/url])
// Cross Browser by: Bob Simpson ([url=http://arcode.yoo7.com/mailto:webmaster@maryjanebrown.net][color=#8d38c9]webmaster@maryjanebrown.net[/color][/url])
// Contributor URL: [url=http://www.maryjanebrown.net/webmaster][color=#8d38c9]http://www.maryjanebrown.net/webmaster[/color][/url]
// This script and many more are available free online at
// The JavaScript Source!! [url=http://javascript.internet.com/][color=#8d38c9]http://javascript.internet.com[/color][/url]
/* Visit [url=http://www.star28.com/]http://www.star28.com/[/url] for more code */
function BrowserCheck() {
var b = navigator.appName;
if (b == "Netscape") this.b = "NS";
else if (b == "Microsoft Internet Explorer") this.b = "IE";
else this.b = b;
this.v = parseInt(navigator.appVersion);
this.NS = (this.b == "NS" && this.v>=4);
this.NS4 = (this.b == "NS" && this.v == 4);
this.NS5 = (this.b == "NS" && this.v == 5);
this.IE = (this.b == "IE" && this.v>=4);
this.IE4 = (navigator.userAgent.indexOf('MSIE 4')>0);
this.IE5 = (navigator.userAgent.indexOf('MSIE 5')>0);
if (this.IE5 || this.NS5) this.VER5 = true;
if (this.IE4 || this.NS4) this.VER4 = true;
this.OLD = (! this.VER5 && ! this.VER4) ? true : false;
this.min = (this.NS||this.IE);
}
is = new BrowserCheck();
</script>
<div align="center" id="staticBall" style="position:relative;visibility:visible">
<img src="2.gif" height="35" width="160" alt="كرة ثابتة">
</div>

<div id="ball" style="visibility:hidden; position:absolute; left:100; top:10; height:34; width:34">
<img src="2.gif" height="35" width="160" alt="ضع هنا عنوان الصورة">
</div>

<script language="Javascript1.2">
<!-- Begin
iter = 0;
setId = 0;
down = true;
up = false;
bouncingBall = (is.VER5) ? document.getElementById("ball").style
: (is.NS) ? document.layers["ball"]
: document.all["ball"].style;
stillBall = (is.VER5) ? document.getElementById("staticBall").style
: (is.NS) ? document.layers["staticBall"] : document.all["staticBall"].style;
winH = (is.NS) ? window.innerHeight - 55 : document.body.offsetHeight - 55;
document.onmouseup = buttonUp;
if (is.NS4)
document.captureEvents(Event.MOUSEUP);
function buttonUp(e) {
if ( ((is.NS) ? e.which : event.button) != 1) return true;
if (setId != 0) clearInterval(setId);
bouncingBall.visibility="visible";
stillBall.visibility="hidden";
bouncingBall.left = (is.NS) ? e.pageX - 15 : event.offsetX - 15;
bouncingBall.top = (is.NS) ? e.pageY - 15 : event.offsetY - 15;
iter = 0;
setId = setInterval("generateGravity()", 20);
return true;
}
function generateGravity() {
if ((parseInt(bouncingBall.top)+iter < winH) && down) {
bouncingBall.top = parseInt(bouncingBall.top) + iter;
iter++;
return;
}
else {
if ((parseInt(bouncingBall.top)< winH) && down) {
bouncingBall.top = winH + 5;
return;
}
down = false;
up = true;
if (iter < 0 && parseInt(bouncingBall.top) > winH) {
clearInterval(setId);
bouncingBall.visibility = "hidden";
stillBall.visibility="visible";
setId = 0;
}
if (parseInt(bouncingBall.top) > 0 && up && iter >= 0) {
bouncingBall.top = parseInt(bouncingBall.top) - iter;
iter--;
if (iter%3 == 0) iter--;
return;
}
down = true;
up = false;
}
}
// End -->
</script>
الرجوع الى أعلى الصفحة اذهب الى الأسفل
https://ahlaremas.yoo7.com
 
صورة تهبط الى الشاشة مثل الكرة
الرجوع الى أعلى الصفحة 
صفحة 1 من اصل 1
 مواضيع مماثلة
-
»  كود درجة وضوح الشاشة
» TechSmith Camtasia Studio 8.0.2 Build 918 - تحميل برنامج كومستيا ستوديو 8 كامل لتصوير الشاشة فيديو
»  درس عمل دائرة مشعة بداخلها صورة
»  كودcss وضع صورة خلفية للاقسام
»  كود أدعية مشاري راشد لإخواننا في غزة ( صوت و صورة )

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