مكتبة اكواد جافا
رسالة في الاسفل
<script language="JavaScript">var boodschap = 'ALFaNaaR 2002-2003 © All rights reserved.'; function dgstatus(){ window.status = boodschap; timerID= setTimeout("dgstatus()", 25);}</script><script language="JavaScript"><!--dgstatus();//--></script>
ـــــــــــــــــــ
ترحيب باسم الزائر
<script Language="JavaScript">var name=prompt("ممكن اعرف شخصية الحلو؟"," سكره")</script> <script Language="JavaScript">document.write(name);</script>
تشغيل الاغنية
<center><object id="RAOCXPlayer"classid="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA" height="50"width="250"><param name="controls" value="ControlPanel"><param name="nolabels" value="true"><param name="autostart" value="true"><param name="console" value="player1"><embed TYPE="audio/x-pn-realaudio-plugin" NAME="player1" CONTROLS="ControlPanel" HEIGHT=25 WIDTH=250 NOLABELS=TRUE AUTOSTART=TRUE console="player1"> </object><object id="RAOCXPlayer2"classid="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA" height="25"width="250"><param name="controls" value="StatusBar"><param name="nolabels" value="true"><param name="autostart" value="true"><param name="SRC" value="http://www.uaefm.com/abdullah_rwaishid/tesawar.ram"><param name="console" value="player1"><embed TYPE="audio/x-pn-realaudio-plugin" NAME="player2" SRC="http://www.uaefm.com/abdullah_rwaishid/tesawar.ram"CONTROLS="StatusBar" HEIGHT=25 WIDTH=250 NOLABELS=TRUE AUTOSTART=TRUEconsole="player1"></object></center></td><td align=center width=150>
تاثيرات للماوس
<BODY><div id="dot0" style="position: absolute; visibility: hidden; height: 11; width: 11;"><img src="bullet.gif" height=11 width=11></div><div id="dot1" style="position: absolute; height: 11; width: 11;"><img src="bullet.gif" height=11 width=11></div><div id="dot2" style="position: absolute; height: 11; width: 11;"><img src="bullet.gif" height=11 width=11></div><div id="dot3" style="position: absolute; height: 11; width: 11;"><img src="bullet.gif" height=11 width=11></div><div id="dot4" style="position: absolute; height: 11; width: 11;"><img src="bullet.gif" height=11 width=11></div><div id="dot5" style="position: absolute; height: 11; width: 11;"><img src="bullet.gif" height=11 width=11></div><div id="dot6" style="position: absolute; height: 11; width: 11;"><img src="bullet.gif" height=11 width=11></div><SCRIPT LANGUAGE="JavaScript"><!-- Beginvar nDots = 7;var Xpos = 0;var Ypos = 0;var DELTAT = .01;var SEGLEN = 10;var SPRINGK = 10;var MASS = 1;var GRAVITY = 50;var RESISTANCE = 10;var STOPVEL = 0.1;var STOPACC = 0.1;var DOTSIZE = 11;var BOUNCE = 0.75;var isNetscape = navigator.appName=="Netscape";var followmouse = true;var dots = new Array();init();function init() {var i = 0;for (i = 0; i < nDots; i++) {dots[i] = new dot(i);}if (!isNetscape) {// I only know how to read the locations of the // <LI> items in IE//skip this for now// setInitPositions(dots)}// set their positionsfor (i = 0; i < nDots; i++) {dots[i].obj.left = dots[i].X;dots[i].obj.top = dots[i].Y;}if (isNetscape) {// start right away since they are positioned// at 0, 0startanimate();} else {// let dots sit there for a few seconds// sincey they're hiding on the real bulletssetTimeout("startanimate()", 3000); }}function dot(i) {this.X = Xpos;this.Y = Ypos;this.dx = 0;this.dy = 0;if (isNetscape) {this.obj = eval("document.dot" + i);} else {this.obj = eval("dot" + i + ".style"); }}function startanimate() {setInterval("animate()", 20);}// This is to line up the bullets with actual LI tags on the pagefunction setInitPositions(dots) {// initialize dot positions to be on top // of the bullets in the <ul>var startloc = document.all.tags("LI");var i = 0;for (i = 0; i < startloc.length && i < (nDots - 1); i++) {dots[i+1].X = startloc[i].offsetLeftstartloc[i].offsetParent.offsetLeft - DOTSIZE;dots[i+1].Y = startloc[i].offsetTop +startloc[i].offsetParent.offsetTop + 2*DOTSIZE;}// put 0th dot above 1st (it is hidden)dots[0].X = dots[1].X;dots[0].Y = dots[1].Y - SEGLEN;}// just save mouse position for animate() to usefunction MoveHandler(e){Xpos = e.pageX;Ypos = e.pageY; return true;}// just save mouse position for animate() to usefunction MoveHandlerIE() {Xpos = window.event.x;Ypos = window.event.y; }if (isNetscape) {document.captureEvents(Event.MOUSEMOVE);document.onMouseMove = MoveHandler;} else {document.onmousemove = MoveHandlerIE;}function vec(X, Y) {this.X = X;this.Y = Y;}// adds force in X and Y to spring for dot[i] on dot[j]function springForce(i, j, spring) {var dx = (dots[i].X - dots[j].X);var dy = (dots[i].Y - dots[j].Y);var len = Math.sqrt(dx*dx + dy*dy);if (len > SEGLEN) {var springF = SPRINGK * (len - SEGLEN);spring.X += (dx / len) * springF;spring.Y += (dy / len) * springF; }}function animate() {// dots[0] follows the mouse,// though no dot is drawn therevar start = 0;if (followmouse) {dots[0].X = Xpos;dots[0].Y = Ypos;start = 1;}for (i = start ; i < nDots; i++ ) {var spring = new vec(0, 0);if (i > 0) {springForce(i-1, i, spring);}if (i < (nDots - 1)) {springForce(i+1, i, spring);}// air resisitance/frictionvar resist = new vec(-dots[i].dx * RESISTANCE, -dots[i].dy * RESISTANCE);// compute new accel, including gravityvar accel = new vec((spring.X + resist.X)/ MASS, (spring.Y + resist.Y)/ MASS + GRAVITY);// compute new velocitydots[i].dx += (DELTAT * accel.X);dots[i].dy += (DELTAT * accel.Y);// stop dead so it doesn't jitter when nearly stillif (Math.abs(dots[i].dx) < STOPVEL &&Math.abs(dots[i].dy) < STOPVEL &&Math.abs(accel.X) < STOPACC &&Math.abs(accel.Y) < STOPACC) {dots[i].dx = 0;dots[i].dy = 0;}// move to new positiondots[i].X += dots[i].dx;dots[i].Y += dots[i].dy;// get size of windowvar height, width;if (isNetscape) {height = window.innerHeight;width = window.innerWidth;} else {height = document.body.clientHeight;width = document.body.clientWidth;}// bounce of 3 walls (leave ceiling open)if (dots[i].Y >= height - DOTSIZE - 1) {if (dots[i].dy > 0) {dots[i].dy = BOUNCE * -dots[i].dy;}dots[i].Y = height - DOTSIZE - 1;}if (dots[i].X >= width - DOTSIZE) {if (dots[i].dx > 0) {dots[i].dx = BOUNCE * -dots[i].dx;}dots[i].X = width - DOTSIZE - 1;}if (dots[i].X < 0) {if (dots[i].dx < 0) {dots[i].dx = BOUNCE * -dots[i].dx;}dots[i].X = 0;}// move img to new positiondots[i].obj.left = dots[i].X;dots[i].obj.top = dots[i].Y;}}// End --></script>
التاريخ
<tr> <td width="55%" align="right" valign="top" colspan="3"> <p align="center"> <font color="#0000FF"><!--webbot bot="HTMLMarkup" startspan --> <p align="center"><b> <script><!-- START HIDE// #############################################################// ### GDS SmartScript V.5.0 (C)1998 GD Software// ### http://www.danbbs.dk/~duplex// ### duplex@mail.danbbs.dk// ### Bugs fixed by Bin Thayeb (now Y2K compliant)// #############################################################print1="";print2="";print3="";today = new Date();weekday = today.getDay();if (weekday == 6) print1='السبت';if (weekday == 0) print1='الأحد';if (weekday == 1) print1='الاثنين';if (weekday == 2) print1='الثلاثاء';if (weekday == 3) print1='الاربعاء';if (weekday == 4) print1='الخميس';if (weekday == 5) print1='الجمعة';month = today.getMonth();if (month == 0) print2='يناير';if (month == 1) print2='فبراير';if (month == 2) print2='مارس';if (month == 3) print2='إبريل';if (month == 4) print2='مايو';if (month == 5) print2='يونيو';if (month == 6) print2='يوليو';if (month == 7) print2='اغسطس';if (month == 8) print2='سبتمبر';if (month == 9) print2='اكتوبر';if (month == 10) print2='نوفمبر';if (month == 11) print2='ديسمبر';date = today.getDate();year=today.getYear();document.write (print1,',', date, ' ',print2,', ',year);// STOP HIDE --></script><!--webbot bot="HTMLMarkup" endspan --> </font></p> </td> </tr>
موقع داخل موقع
<IFRAME WIDTH=100% HEIGHT=300 SRC="http://www.3aazf.com"></IFRAME>
كامل الشاشة
<HEAD><SCRIPT LANGUAGE="JavaScript"><!-- Beginfunction fullScreen(theURL) {window.open(theURL, '', 'fullscreen=yes, scrollbars=auto');}// End --></script></HEAD><BODY><a href="javascript:void(0);" onClick="fullScreen('http://www.3aazf.com');">أهلا وسهلا</a></BODY>
ارسل موقع الى اشهر محركات البحث
<p align="center"><form action="http://websitesubmit.hypermart.net/free/submit.cgi" method="POST"><input type="hidden" name="action" value="submit"><input type="hidden" name="thankyou" value="yes"><div align="center"><center><table border="0" cellpadding="0" cellspacing="0" width="280" bgcolor="#666666"><tr><td align="center" bgcolor="#FF8000"><font color="#FFFFff" size="3" face="Verdana,Arial,Helvetica"><b> ارسل موقعك مع شبكة العازف</b></font></td></tr><tr><td><table border="0" cellpadding="1" width="280" bgcolor="#F4E8BF"><tr><td valign="top" bgcolor="#F4E8BF"><font size="2" face="Arial, Helvetica, sans-serif"> اسم موقعك </font></td><td valign="top" bgcolor="#F4E8BF"><font size="2" face="Arial, Helvetica, sans-serif"><input type="text" size="20" name="url" value="http://"></font></td></tr><tr><td valign="top"><font size="2" face="Arial, Helvetica, sans-serif"> البريد الالكترونى </font></td><td valign="top"><font size="2" face="Arial, Helvetica, sans-serif"><input type="text" size="20" name="email"> </font></td></tr></table></td></tr><tr><td align="center" bgcolor="#FFFFFF"><table border="0" width="280"><tr><td align="center"><font color="#33BB33" size="1" face="Comic Sans MS"><b><i></i></b><b> </b></font><a href="http://websitesubmit.hypermart.net/addscript.htm"><font color="#FF8000" size="1" face="Comic Sans MS"><b></b></font></a><font color="#33BB33" size="1" face="Comic Sans MS"><b></b></font></td></tr></table></td></tr><tr><td align="center"><table border="0" cellspacing="1" width="280" bgcolor="#E79E45"><tr><td valign="top" bgcolor="#FF8000"><font color="#FFFFFF"><b>Default Engines</b></font></td><td valign="top" bgcolor="#FF8000"><font color="#FFFFFF"><b>Additional Engines</b></font></td></tr><tr><td align="left" valign="top" bgcolor="#FFFFFF"><font size="2" face="Arial, Helvetica, sans-serif"><input type="Checkbox" name="engines" value="altavista" checked><a href="http://altavista.digital.com/">altavista</a><br><input type="Checkbox" name="engines" value="excite" checked><a href="http://www.excite.com/">excite</a><br><input type="Checkbox" name="engines" value="go" checked><a href="http://www.go.com">go</a><br><input type="Checkbox" name="engines" value="google" checked><a href="http://www.google.com/">google</a><br><input type="Checkbox" name="engines" value="hotbot" checked><a href="http://www.hotbot.com/">hotbot</a><br><input type="Checkbox" name="engines" value="infoseek" checked><a href="http://www.infoseek.com/">infoseek</a><br><input type="Checkbox" name="engines" value="lycos" checked><a href="http://www.lycos.com/">lycos</a><br><input type="Checkbox" name="engines" value="northernlight" checked><a href="http://www.northernlight.com">northernlight</a><br><input type="Checkbox" name="engines" value="whatyouseek" checked><a href="http://www.whatyouseek.com/">whatyouseek</a><br><input type="checkbox" checked name="engines" value="webcrawler"><a href="http://www.webcrawler.com/">webcrawler</a><br><input type="Checkbox" name="engines" value="fastsearch" checked><a href="http://www.alltheweb.com/">fastsearch</a><br><input type="Checkbox" name="engines" value="infomak" checked><a href="http://www.infomak.com/">infomak</a><br></font></td><td align="left" valign="top" bgcolor="#FFFFFF"><font size="2" face="Arial, Helvetica, sans-serif"><input type="Checkbox" name="engines" value="acoon"><a href="http://www.acoon.de">acoon</a> (.de)<br><input type="Checkbox" name="engines" value="altavista-au"><a href="http://www.altavista.yellowpages.com.au/">altavista</a> (.au)<br><input type="Checkbox" name="engines" value="altavista-de"><a href="http://www.altavista.de">altavista-de</a> (.de)<br><input type="Checkbox" name="engines" value="anzwers"><a href="http://www.anzwers.com/">anzwers</a> (.au .nz)<br><input type="Checkbox" name="engines" value="euroferret"><a href="http://www.euroferret.com/">euroferret</a> (european)<br><input type="Checkbox" name="engines" value="fireball"><a href="http://www.fireball.de">fireball</a> (.de)<br><input type="Checkbox" name="engines" value="intersearch-au"><a href="http://194.232.15.66">intersearch-au</a> (.au)<br><input type="Checkbox" name="engines" value="voila"><a href="http://www.voila.com/">voila</a> (.fr)<br><input type="Checkbox" name="engines" value="webwombat"><a href="http://www.webwombat.com/">webwombat</a> (.au .nz)</font><p align="center"><font color="#FF8000" size="1" face="Comic Sans MS"><br><a href="http://websitesubmit.hypermart.net"><font face="2" color="#33BB33"></font></a></font></p></td></tr></table></td></tr><tr><td><table border="0" cellpadding="0" cellspacing="0" width="280" bgcolor="#FFFF80"><tr><td align="center"><font size="1"><br><font size="2" face="Arial, Helvetica, sans-serif"><input type="submit" value="سجل موقعك"></font><br><br></font></td></tr></table></td></tr></table></center></div></form></p>
اطار مشع
<table border="0" width="280" id="myexample" style="border:5px solid green"><tr><td>وهذا ايضأ عزيزى الزائر<br>إطار مشع للفت انتباة زائر موقعك الزائر<br><br></td></tr></table><script language="JavaScript1.2"><!--/*Flashing Table Border Script- © Dynamic Drive (www.3aazf.com)For full source code, installation instructions,100's more DHTML scripts, and Terms OfUse, visit dynamicdrive.com*/function flashit(){if (!document.all)returnif (myexample.style.borderColor=="green")myexample.style.borderColor="red"elsemyexample.style.borderColor="green"}setInterval("flashit()", 500)//--></script> ـــــــــــــــــــ
نص متحرك يمكنك توسعت هذا المربعر
<!-- خطوة واحد--><!-- انسخ لمنطقةالجسم--><script language="Javascript"><!--// please keep these lines on when you copy the source// made by: Nicolas - http://www.javascript-page.comvar speed = 100//َضع سرعة الجملة هناvar message = "ضع الكلام هنا "var s = 0var l = message.lengthdocument.write("<form name='btn'><input type='button' "+"name='sc' value='"+ message +"'></form>")function btnsc() {document.btn.sc.value = message.substring(s,l) + message.substring(0,s)s++if (s >= l) {s = 0}setTimeout("btnsc()",speed)}btnsc();//--></script>
آيات تتغير تلقائياً
<script LANGUAGE="JavaScript"> <!-- Begin var a = Math.random() + "" var rand1 = a.charAt(5) quotes = new Array quotes[1] = " رب اغفرلي ولوالدي" quotes[2] = "الحمد لله رب العالمين " quotes[3] = " هو الله الذي لا إله إلا هو عالم الغيب والشهادة هو الرحمن الرحيم" quotes[4] = "إن الله غفور رحيم" quotes[5] = "فأنذرتكم ناراً تلظى" quotes[6] = "ربنا هب لنا من لدنك رحمة وهئ لنا من أمرنا رشدا" quotes[7] = "فمن يعمل مثقال ذرة خيراً يره * ومن يعمل مثقال ذرة شراً يره" quotes[8] = "إن الله وملائكته يصلون على النبي ياأيها الذين ءامنوا صلوا عليه وسلموا تسليما" quotes[9] = "إن المتقين في جنات وعيون" quotes[10] = "إن الذين كفروا بآيتنا سوف نصليهم ناراً.." quotes[11] = "إن الله عنده علم الساعة وينزل الغيث ويعلم مافي الأرحام وما تدري نفس ماذا تكسب غدا وما تدري نفس بأي أرض تموت" quotes[12] = "ويقول الكافر ياليتني كنت ترابا" quotes[13] = "ادعوا ربكم تضرعاً وخفية" quotes[14] = "وإذا سألك عبادي عني فإني قريب أجيب دعوة الداع إذا دعان" quotes[0] = "ياأيها الناس اعبدوا ربكم الذي خلقكم والذين من قبلكم لعلكم تتقون" // akuwait.com var quote = quotes[rand1] document.write(quote); // End --> </script>
{ 1 2 3 4 5 6 7 8 } الصفحات الموجوده
تصميم و برمجة و تجميعى