منتدانا كلنا سوى

معنا في منتدانا كلنا سوى الذي زاد أشراقا
بقدومك العزيز علينا
بين اهلك وناسك ان شاء الله تجد الفائدة والمتعة
أتمنى أن تكون سعيد وأن تقضي أجمل أوقاتك هنا
معاً سنصبح افضل
mado man


اكبر مجموعة اكواد في المنتديات مجموعة اكواد مهمه .... منتدانا كلنا سوى Ry56
منتدانا كلنا سوى

معنا في منتدانا كلنا سوى الذي زاد أشراقا
بقدومك العزيز علينا
بين اهلك وناسك ان شاء الله تجد الفائدة والمتعة
أتمنى أن تكون سعيد وأن تقضي أجمل أوقاتك هنا
معاً سنصبح افضل
mado man


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

منتدانا كلنا سوى

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

 

 اكبر مجموعة اكواد في المنتديات مجموعة اكواد مهمه .... منتدانا كلنا سوى

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


الجنس : ذكر
الابراج : السرطان

الأبراج الصينية : الثعبان
احترام قوانين المنتدى : 100
المشاركات : 1055
نقاط نقاط : 1587
الـتـقـيــم الـتـقـيــم : 4

اكبر مجموعة اكواد في المنتديات مجموعة اكواد مهمه .... منتدانا كلنا سوى Empty
مُساهمةموضوع: اكبر مجموعة اكواد في المنتديات مجموعة اكواد مهمه .... منتدانا كلنا سوى   اكبر مجموعة اكواد في المنتديات مجموعة اكواد مهمه .... منتدانا كلنا سوى I_icon_minitime14/10/2010, 12:24 am

اكواد جافا

كود عدم استخدام زر الفارة الايمن

<html>

<head>
<meta http-equiv="Content-Type"
content="text/html; charset=windows-1256">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">


<script
language="JavaScript"><!--

function click() {
if (event.button==2) {
alert('اهلا وسهلا بكم في موقعنا');
}
}
document.onmousedown=click
// -->
// --></script><!-- [ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذا الرابط] -->



<title>Power 2000</title>
</head>

<body background="../../../Graphics/Pictures/Bak.jpg"
bgcolor="#FFFFFF">

</body>
</html>


كود ساعة

<form name="Tick">
<input type="text" size="11" name="Clock">
</form>
<script>
<!--
/*By George Chiang (WA's JavaScript tutorial)
[ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذا الرابط]
Credit must stay intact for use*/
function show(){
var Digital=new Date()
var hours=Digital.getHours()
var minutes=Digital.getMinutes()
var seconds=Digital.getSeconds()
var dn="AM"
if (hours>12){
dn="PM"
hours=hours-12
}
if (hours==0)
hours=12
if (minutes<=9)
minutes="0"+minutes
if (seconds<=9)
seconds="0"+seconds
document.Tick.Clock.value=hours+":"+minutes+":"
+seconds+" "+dn
setTimeout("show()",1000)
}
show()
//-->
</script>

كود تقويم مع تحديد اليوم بلون مختلف

<script>
/*Copyright 1996 - Tomer and Yehuda Shiran
Feel free to "steal" this code provided that you leave this notice as is.
Additional examples from the book can be found at [ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذا الرابط]
For more information contact Tomer or Yehuda Shiran <yshiran@iil.intel.com>*/

setCal()

function getTime() {
// initialize time-related variables with current time settings
var now = new Date()
var hour = now.getHours()
var minute = now.getMinutes()
now = null
var ampm = ""

// validate hour values and set value of ampm
if (hour >= 12) {
hour -= 12
ampm = "PM"
} else
ampm = "AM"
hour = (hour == 0) ? 12 : hour

// add zero digit to a one digit minute
if (minute < 10)
minute = "0" + minute // do not parse this number!

// return time string
return hour + ":" + minute + " " + ampm
}

function leapYear(year) {
if (year % 4 == 0) // basic rule
return true // is leap year
/* else */ // else not needed when statement is "return"
return false // is not leap year
}

function getDays(month, year) {
// create array to hold number of days in each month
var ar = new Array(12)
ar[0] = 31 // January
ar[1] = (leapYear(year)) ? 29 : 28 // February
ar[2] = 31 // March
ar[3] = 30 // April
ar[4] = 31 // May
ar[5] = 30 // June
ar[6] = 31 // July
ar[7] = 31 // August
ar[8] = 30 // September
ar[9] = 31 // October
ar[10] = 30 // November
ar[11] = 31 // December

// return number of days in the specified month (parameter)
return ar[month]
}

function getMonthName(month) {
// create array to hold name of each month
var ar = new Array(12)
ar[0] = "January"
ar[1] = "February"
ar[2] = "March"
ar[3] = "April"
ar[4] = "May"
ar[5] = "June"
ar[6] = "July"
ar[7] = "August"
ar[8] = "September"
ar[9] = "October"
ar[10] = "November"
ar[11] = "December"

// return name of specified month (parameter)
return ar[month]
}

function setCal() {
// standard time attributes
var now = new Date()
var year = now.getYear()
if (year < 1000)
year+=1900
var month = now.getMonth()
var monthName = getMonthName(month)
var date = now.getDate()
now = null

// create instance of first day of month, and extract the day on which it occurs
var firstDayInstance = new Date(year, month, 1)
var firstDay = firstDayInstance.getDay()
firstDayInstance = null

// number of days in current month
var days = getDays(month, year)

// call function to draw calendar
drawCal(firstDay + 1, days, date, monthName, year)
}

function drawCal(firstDay, lastDate, date, monthName, year) {
// constant table settings
var headerHeight = 50 // height of the table's header cell
var border = 2 // 3D height of table's border
var cellspacing = 4 // width of table's border
var headerColor = "midnightblue" // color of table's header
var headerSize = "+3" // size of tables header font
var colWidth = 60 // width of columns in table
var dayCellHeight = 25 // height of cells containing days of the week
var dayColor = "darkblue" // color of font representing week days
var cellHeight = 40 // height of cells representing dates in the calendar
var todayColor = "red" // color specifying today's date in the calendar
var timeColor = "purple" // color of font representing current time

// create basic table structure
var text = "" // initialize accumulative variable to empty string
text += '<CENTER>'
text += '<TABLE BORDER=' + border + ' CELLSPACING=' + cellspacing + '>' // table settings
text += '<TH COLSPAN=7 HEIGHT=' + headerHeight + '>' // create table header cell
text += '<FONT COLOR="' + headerColor + '" SIZE=' + headerSize + '>' // set font for table header
text += monthName + ' ' + year
text += '</FONT>' // close table header's font settings
text += '</TH>' // close header cell

// variables to hold constant settings
var openCol = '<TD WIDTH=' + colWidth + ' HEIGHT=' + dayCellHeight + '>'
openCol += '<FONT COLOR="' + dayColor + '">'
var closeCol = '</FONT></TD>'

// create array of abbreviated day names
var weekDay = new Array(7)
weekDay[0] = "Sun"
weekDay[1] = "Mon"
weekDay[2] = "Tues"
weekDay[3] = "Wed"
weekDay[4] = "Thu"
weekDay[5] = "Fri"
weekDay[6] = "Sat"

// create first row of table to set column width and specify week day
text += '<TR ALIGN="center" VALIGN="center">'
for (var dayNum = 0; dayNum < 7; ++dayNum) {
text += openCol + weekDay[dayNum] + closeCol
}
text += '</TR>'

// declaration and initialization of two variables to help with tables
var digit = 1
var curCell = 1

for (var row = 1; row <= Math.ceil((lastDate + firstDay - 1) / 7); ++row) {
text += '<TR ALIGN="right" VALIGN="top">'
for (var col = 1; col <= 7; ++col) {
if (digit > lastDate)
break
if (curCell < firstDay) {
text += '<TD></TD>';
curCell++
} else {
if (digit == date) { // current cell represent today's date
text += '<TD HEIGHT=' + cellHeight + '>'
text += '<FONT COLOR="' + todayColor + '">'
text += digit
text += '</FONT><BR>'
text += '<FONT COLOR="' + timeColor + '" SIZE=2>'
text += '<CENTER>' + getTime() + '</CENTER>'
text += '</FONT>'
text += '</TD>'
} else
text += '<TD HEIGHT=' + cellHeight + '>' + digit + '</TD>'
digit++
}
}
text += '</TR>'
}

// close all basic table tags
text += '</TABLE>'
text += '</CENTER>'

// print accumulative HTML string
document.write(text)
}
</script>
<p align="center"><font face="arial" size="-2"> </font><br>
<font face="arial, helvetica" size="-20"><a href="http://jawal.hypermart.net/">مع تحيات شبكة الجوال</a></font></p>



كود فتح نافذه جديدة بمجرد دخول الموقع

<HEAD>

<SCRIPT LANGUAGE="JavaScript">
<!-- Idea by: Nic Wolfe (Nic@TimelapseProductions.com) -->
<!-- Web URL: [ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذا الرابط] -->


<!-- Begin
function popUp() {
props=window.open('http://jawal.hypermart.net/', 'poppage', 'toolbars=0, scrollbars=1, location=0, statusbars=0, menubars=0, resizable=1, width=300, height=300');
}
// End -->
</script>


<BODY onLoad="javascript:popUp()">

<!-- Script Size: 0.73 KB -->

كود وصلة راقصة

<HEAD>

<SCRIPT LANGUAGE="JavaScript">



<!-- Begin
function initArray() {
for (var i = 0; i < initArray.arguments.length; i++) {
this[i] = initArray.arguments[i];
}
this.length = initArray.arguments.length;
}
var colors = new initArray(
"red",
"blue",
"green",
"purple",
"black",
"tan",
"red");
delay = .5; // seconds
link = 0;
vlink = 2;
function linkDance() {
link = (link+1)%colors.length;
vlink = (vlink+1)%colors.length;
document.linkColor = colors[link];
document.vlinkColor = colors[vlink];
setTimeout("linkDance()",delay*1000);
}
linkDance();
// End -->
</script>



كود الموقع الافتراضي

<!--[if IE]>
<small><a class="chlnk" style="cursor:hand;font-weight:bold;color:blue;font-family:arial" HREF onClick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://jawal.hypermart.net/');">أضغط هنا لجعل الموقع أفتراضي لديك</a></small>
<![endif]-->

كود تحديث الصفحات

<input type="Button" name="lukk" value=" تحديث الصفحة" style="font-size: x-small; font-family: Tahoma; font-weight: normal; color: BLAC; background-color: #FFFFFF" onClick="javascript:location.reload()">

كود درجات الحرارة في المدينة المنورة


<a href="http://www.wunderground.com/global/stations/40430.html">
<img src="http://banners.wunderground.com/banner/gizmotemp/global/stations/40430.gif" height=41 width=127></a>



كود درجات الحرارة في مكة المكرمة

<a href="http://www.wunderground.com/global/stations/41030.html">
<img src="http://banners.wunderground.com/banner/gizmotemp/global/stations/41030.gif" height=41 width=127></a>



كود درجات الحرارة في الرياض

<a href="http://www.wunderground.com/global/stations/40438.html">
<img src="http://banners.wunderground.com/banner/gizmotemp/global/stations/40438.gif" height=41 width=127></a>



كود درجات الحرارة في دبي

<a href="http://www.wunderground.com/global/stations/41194.html">
<img src="http://banners.wunderground.com/banner/gizmotemp/global/stations/41194.gif" height=41 width=127></a>



كود درجات الحرارة في القاهرة

<a href="http://www.wunderground.com/global/stations/62366.html">
<img src="http://banners.wunderground.com/banner/gizmotemp/global/stations/62366.gif" height=41 width=127></a>



كود درجات الحرهرة في دمشق



<a href="http://www.wunderground.com/global/stations/40080.html">
<img src="http://banners.wunderground.com/banner/gizmotemp/global/stations/40080.gif" height=41 width=127></a>



كود درجات الحرارة في صنعاء

<a href="http://www.wunderground.com/global/stations/41404.html">
<img src="http://banners.wunderground.com/banner/gizmotemp/global/stations/41404.gif" height=41 width=127></a>



كود درجات الحرارة في بيروت

<a href="http://www.wunderground.com/global/stations/40100.html">
<img src="http://banners.wunderground.com/banner/gizmotemp/global/stations/40100.gif" height=41 width=127></a>



كود درجات الحرارة في الدوحة

<a href="http://www.wunderground.com/global/stations/41170.html">
<img src="http://banners.wunderground.com/banner/gizmotemp/global/stations/41170.gif" height=41 width=127></a>


كود جافا شريط يبين اسم الصفحات

<span id="staticcombo" style="position:absolute;left:0;top:0;visibility:hidden">
<form name="jumpy">
<p><select name="example" size="1" onChange="gone()">
<option value="http://jawal.hypermart.net/">الشريط المتحرك الكود موجود في الاسفل</option>
<option value="http://jawal.hypermart.net/chat.htm">غرفة المحادثات</option>
<option value="http://jawal.hypermart.net/java.htm">قسم الجافا</option>
<option value="http://jawal.hypermart.net/art.htm">القنوات التلفزيونية </option>
</select>

<script language="javascript">
<!--

/*Always-visible combo box credit:
Website Abstraction (http://jawal.hypermart.net/)
Over 400+ free JavaScripts here!
*/

function gone()
{
location=document.jumpy.example.options[document.jumpy.example.selectedIndex].value
}
//-->
</script>

<input type="button" name="test" value="Go!"
onClick="gone()">
</p>
</form>
</span>


<script language="JavaScript1.2">
var combowidth=''
var comboheight=''

function initialize(){
if (document.all){
combowidth=staticcombo.offsetWidth
comboheight=staticcombo.offsetHeight
setInterval("staticit_ie()",50)
staticcombo.style.visibility="visible"
}
else if (document.layers){
combowidth=document.staticcombo.document.width
comboheight=document.staticcombo.document.height
setInterval("staticit_ns()",50)
document.staticcombo.visibility="show"
}
}

function staticit_ie(){
staticcombo.style.pixelLeft=document.body.scrollLeft+document.body.clientWidth-combowidth-30
staticcombo.style.pixelTop=document.body.scrollTop+document.body.clientHeight-comboheight
}

function staticit_ns(){
document.staticcombo.left=pageXOffset+window.innerWidth-combowidth-30
document.staticcombo.top=pageYOffset+window.innerHeight-comboheight
}

window.onload=initialize
</script>



كتابة اسفل

<html>

<head>
<meta http-equiv="Content-Type"
content="text/html; charset=windows-1256">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<title>Power 2000</title>
</head>

<body background="../../../Graphics/Pictures/Bak.jpg"
bgcolor="#FFFFFF">


<SCRIPT LANGUAGE="JavaScript">

<!--

var x = 0
var y = 0
var z = 140
var delay = 70
var text = "أهلا وسهلا بكم "
+"اتمنى ان تقضي وقتا ممتعا في موقعنا "
while (y ++ < z) {
text = " " + text
}

function scroller() {
window.status = text.substring(x++, text.length);
if (x == text.length) {
x = 0;
}
setTimeout("scroller()", delay);
}

scroller();
//-->
//http://jawal.hypermart.net/
</SCRIPT>




</body>
</html>


كود كاشف اي بي


<HTML>

<HEAD>
<META NAME=GENERATOR CONTENT="">
<X-CLARIS-WINDOW TOP=0 BOTTOM=315 LEFT=0 RIGHT=628>
<X-CLARIS-TAGVIEW MODE=minimal>
</HEAD>
<BODY>
<P><html> <head> <title>alholaisi.cjb.net</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="GENERATOR" content="Microsoft FrontPage 3.0"> <style>
//--> </style> <meta http-equiv="Content-Type" content="text/html; ">
<meta name="GENERATOR" content="Microsoft FrontPage 3.0"> </head></P>

<P> </P>

<P><TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH=200 HEIGHT=1>
<TR>
<TD VALIGN=top WIDTH=430 HEIGHT=1>
<P><FORM ACTION="http://www.ripe.net/cgi-bin/whois" METHOD=POST enctype="application/x-www-form-urlencoded" target="_blank">
<P><div align="center"></P>

<CENTER><INPUT TYPE=text NAME=query VALUE="ضع الآي بي" SIZE=12 style="color: rgb(FFFFFF)">
<INPUT TYPE=submit NAME=Submit VALUE="اضغط هنا لتحديد الهويه" style="background-color: rgb(FFFFFF); color: rgb(OOOOOO)"></CENTER>

<P></div>
</FORM></P>
</TD>
</TR>
</TABLE>
</P>
</BODY>
</HTML>


كود شريط لعرض الصفحات


<script language="JavaScript1.2">
<!--

/*
Conveyor belt slideshow script-
© Dynamic Drive ([ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذا الرابط]
For full source code, installation instructions,
100's more DHTML scripts, and Terms Of
Use, visit dynamicdrive.com
*/


//Specify the slider's width (in pixels)
var sliderwidth=330
//Specify the slider's height (in pixels, pertains only to NS)
var sliderheight=145
//Specify the slider's scroll speed (larger is faster)
var slidespeed=4

//Specify the slider's images
var leftrightslide=new Array()
var finalslide=''
leftrightslide[0]='<a href="http://jawal.8k.com/"><img src="http://jawal.8k.com/epbimages/home.gif" border=1></a>'
leftrightslide[1]='<a href="http://jawal.8k.com/"><img src="http://jawal.8k.com/epbimages/home.gif" border=1></a>'
leftrightslide[2]='<a href="http://jawal.8k.com/"><img src="http://jawal.8k.com/epbimages/home.gif" border=1></a>'
leftrightslide[3]='<a href="http://jawal.8k.com/"><img src="http://jawal.8k.com/epbimages/home.gif" border=1></a>'
leftrightslide[4]='<a href="http://jawal.8k.com/"><img src="http://jawal.8k.com/epbimages/home.gif" border=1></a>'

///////do NOT edit pass this line////////////////////////////////////

var copyspeed=slidespeed
//copy contents of leftrightslide into one variable
for (i=0;i<leftrightslide.length;i++)
finalslide=finalslide+leftrightslide[i]+" "


if (document.all){
//dynamically write out the marquee tag
document.write('<marquee id="ieslider" scrollAmount=0 style="width:'+sliderwidth+'">'+finalslide+'</marquee>')
//stop marquee when mouse is over it
ieslider.onmouseover=new Function("ieslider.scrollAmount=0")
//re-enable marquee when mouse is out
ieslider.onmouseout=new Function("if (document.readyState=='complete') ieslider.scrollAmount=slidespeed")
}

function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
document.ns_slider01.visibility="show"
setTimeout("window.onresize=regenerate",450)
intializeleftrightslide()
}
if (document.all)
ieslider.scrollAmount=slidespeed
}

//NS specific function for initializing slider upon page load
function intializeleftrightslide(){
document.ns_slider01.document.ns_slider02.document.write('<nobr>'+finalslide+'</nobr>')
document. ns_slider01.document.ns_slider02.document.close()
thelength=document.ns_slider01.document.ns_slider02.document.width
scrollslide()
}

//NS specific function for sliding slideshow
function scrollslide(){
if (document.ns_slider01.document.ns_slider02.left>=thelength*(-1)){
document.ns_slider01.document.ns_slider02.left-=slidespeed
setTimeout("scrollslide()",100)
}
else{
document.ns_slider01.document.ns_slider02.left=sliderwidth
scrollslide()
}
}
window.onload=regenerate2

//-->
</script>


<ilayer width=&{sliderwidth}; height=&{sliderheight}; name="ns_slider01" visibility=hide>
<layer name="ns_slider02" onMouseover="slidespeed=0;" onMouseout="slidespeed=copyspeed"></layer>
</ilayer>

رسالة ترحيبية


<CENTER>
<FORM NAME="marquee1">
<INPUT NAME="text" SIZE=25
VALUE=" اهلا وسهلا بكم"
>
</FORM>
</CENTER>
<SCRIPT>
<!--
/*Text box marquee by Dave Methvin,
Windows Magazine
May be used/modified if credit line is
retained*/
ScrollSpeed = 100
ScrollChars = 1
function ScrollMarquee() {
window.setTimeout('ScrollMarquee()',ScrollSpeed);

var msg = document.marquee1.text.value;
document.marquee1.text.value =
msg.substring(ScrollChars) +
msg.substring(0,ScrollChars);
}
ScrollMarquee()
//-->
</SCRIPT>


رسالة كالسابقة ولكن تكتب حرف حرف

<script language="JavaScript">
<!-- begin
var max=0;
function textlist()
{
max=textlist.arguments.length; for (i=0; i<max; i++) this[i]=textlist.arguments[i];
}
tl=new textlist
(
"ضع النص هنا" // Geben Sie hier den zu scrollenden Text ein
);
var x=0; pos=0;
var l=tl[0].length;
function textticker()
{
document.tickform.tickfield.value=tl[x].substring(0,pos)+"_";
if(pos++==l)
{
pos=0;
setTimeout("textticker()",1000);
x++;
if(x==max)
x=0;
l=tl[x].length;
} else
setTimeout("textticker()",50);
}
// end -->
</script>
<script LANGUAGE="JavaScript">
<!--
document.write("<FORM NAME="tickform">");
document.write("<INPUT TYPE="TEXT" NAME="tickfield" SIZE="30">"); // Bei SIZE k?nnen Sie die Gr??e des Feldes ?ndern
document.write("</FORM>");
textticker();
//-->
</script>


تحيتين في بداية دخول الصفحة

<script>
<!--
/*Personalization script part two By Jason Cooper
May Be used/modified if credit is retained*/
alert("أهلا وسهلا")
/* The prompt may be changed*/
var name=prompt("لوسمحت اكتب اسمك","على كيفك")
//-->
</script>
<script>
<!--
/*Personalization script part two by Jason Cooper
May be used/modified if credit is retained*/
document.write(name)
//-->
</script>

ترحيب جديد مع ملاحظة كل مازاد الرقم نقصت السرعة


<script language="Javascript">
<!--
// please keep these lines on when you copy the source
// made by: Nicolas - [ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذا الرابط]

var speed = 100//َسرعة الكلام اكتبه هنا
var message = "الترحيب أهلاوسهلا"

var s = 0
var l = message.length
document.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>

الساعة والتاريخ تظهر على الشريط تحت

<HEAD>

<SCRIPT LANGUAGE="JavaScript">

<!-- Original: Francis Woodhouse (francis@contessa.u-net.com) -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! [ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذا الرابط] -->

<!-- Begin
function runClock() {
theTime = window.setTimeout("runClock()", 1000);
var today = new Date();
var display= today.toLocaleString();
status=display;
}
// End -->
</SCRIPT>



<body onLoad="runClock()">



كود فتح صفحة جديدة بمجرد الدخول للموقع

<SCRIPT LANGUAGE="JavaScript">
<!--
window.open("http://ضع اسم الصفحة هنا","windowname","height=320,width=320,scrollbars,resizable")
// -->
</SCRIPT>

تغير خلفية الصفحة عند بداية الدخول

<SCRIPT>
<!--
/*Background fade by Dave Methvin,
Windows Magazine
May be used/modified if credit line is
retained*/
function BgFade(red1, grn1, blu1, red2,
grn2, blu2, steps) {
sred = red1; sgrn = grn1; sblu = blu1;
ered = red2; egrn = grn2; eblu = blu2;
inc = steps;
step = 0;
RunFader();
}
function RunFader() {
var epct = step/inc;
var spct = 1 - epct;
document.bgColor =
Math.floor(sred * spct + ered *
epct)*256*256 +
Math.floor(sgrn * spct + egrn * epct)*256 +
Math.floor(sblu * spct + eblu * epct);
if ( step < inc ) {
setTimeout('RunFader()',50);
}
step++;
}
BgFade(0x00,0x00,0x00, 0xFF,0xFF,0xFF,10);
//-->
</SCRIPT>

عداد صغير يخبر الزائر كم له موجود في الصفحة

<table border="0">
<tr>
<td align="center"><font face="Arial"><strong>انت لك الان في هذه الصفحة:</strong></font></td>
<td align="center"><form name="d">
<p><input type="text" size="8" name="d2"></p>
</form>
</td>
<td align="center"><font face="Arial"><strong>ثانية</strong></font></td>
</tr>
</table>
<script>
<!--
/*By George Chiang. (WA's ultimate JavaScript tutorial and free JavaScripts site!)
[ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذا الرابط]
Credit MUST stay intact for use*/
var milisec=0
var seconds=0
document.d.d2.value='0'
function display(){
if (milisec>=9){
milisec=0
seconds+=1
}
else
milisec+=1
document.d.d2.value=seconds+"."+milisec
setTimeout("display()",100)
}
display()
//-->
</script>



تغيير لون الخلفية حسب الطلب

<HEAD>

<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function changeBackground(hexNumber) {
document.bgColor=hexNumber
}
prefix="#"
rnum1=0
bnum1=0
gnum1=0
rnum2=0
bnum2=0
gnum2=0
hexNumber2="#000000";
rcount=0;
bcount=0;
gcount=0;
function num2hex(num) {
if (num==15) return "f";
else if (num==14) return "e";
else if (num==13) return "d";
else if (num==12) return "c";
else if (num==11) return "b";
else if (num==10) return "a";
else if (num==9) return "9";
else if (num==8) return "8";
else if (num==7) return "7";
else if (num==6) return "6";
else if (num==5) return "5";
else if (num==4) return "4";
else if (num==3) return "3";
else if (num==2) return "2";
else if (num==1) return "1";
else return "0";
}
function changeBackground2(number) {
if(number == 1) {
rnum1=rcount%16;
if (rcount <15) {
rcount=rcount+1;
}
}
if(number == 2) {
gnum1=gcount%16;
if (gcount <15) {
gcount=gcount+1;
}
}
if(number == 3) {
bnum1=bcount%16;
if (bcount <15) {
bcount=bcount+1;
}
}
if(number == 4) {
rnum1=rcount%16;
if (rcount > 0) {
rcount=rcount-1;
}
}
if(number == 5) {
gnum1=gcount%16;
if (gcount > 0) {
gcount=gcount-1;
}
}
if(number == 6) {
bnum1=bcount%16;
if (bcount > 0) {
bcount=bcount-1;
}
}
hexNumber2 = prefix+num2hex(rnum1)+num2hex(rnum2)+num2hex(gnum1)+num2hex(gnum2)+num2hex(bnum1)+num2hex(bnum2);
document.bgColor=hexNumber2
}
// End -->
</SCRIPT>



<BODY>

<CENTER>
<FORM METHOD="POST" NAME="background">
<TABLE WIDTH=350 BORDER="3" CELLPADDING="3">
<TR>
<TD Align=center><INPUT TYPE="button" VALUE="أحمر" ONCLICK="changeBackground('#FF0000')"></TD>
<TD Align=center><INPUT TYPE="button" VALUE="أخضر" ONCLICK="changeBackground('#00FF00')"></TD>
<TD Align=center><INPUT TYPE="button" VALUE="أزرق" ONCLICK="changeBackground('#0000FF')"></TD>
<TD Align=center><INPUT TYPE="button" VALUE="أبيض" ONCLICK="changeBackground('#FFFFFF')"></TD>
<TD Align=center><INPUT TYPE="button" VALUE="أسود" ONCLICK="changeBackground('#000000')"></TD>
<TD Align=center><INPUT TYPE="button" VALUE="رمادي" ONCLICK="changeBackground('#C0C0C0')"></TD>
</TR>
</TABLE>
<TABLE WIDTH=350 BORDER="3" CELLPADDING="3">
<TR><TD><center>اضغط على اللون الذي ترغبه</center></TD>
</TR>
</TABLE>
<TABLE WIDTH=350 BORDER="3" CELLPADDING="3">
<TR>
<TD></TD>
</TR>
</TABLE>
</FORM>
</CENTER>



يحدث الصفحة كل 30 ثانية

<script>
<!--

/*
Auto Refresh Page with Time script
By Website Abstraction (wsabstract.com)
Over 200+ free scripts here!
*/

//enter refresh time in "minutes:seconds" Minutes should range from 0 to inifinity. Seconds should range from 0 to 59
var limit="0:30"

if (document.images){
var parselimit=limit.split(":")
parselimit=parselimit[0]*60+parselimit[1]*1
}
function beginrefresh(){
if (!document.images)
return
if (parselimit==1)
window.location.reload()
else{
parselimit-=1
curmin=Math.floor(parselimit/60)
cursec=parselimit%60
if (curmin!=0)
curtime=curmin+" minutes and "+cursec+" seconds left until page refresh!"
else
curtime=cursec+" seconds left until page refresh!"
window.status=curtime
setTimeout("beginrefresh()",1000)
}
}

window.onload=beginrefresh
//-->
</script>

كود يجعل الوصلة بدون خط تحتها

<style>
<!--
A:link {text-decoration: none; color: لون الوصلةالرئيسي;}
A:visited {text-decoration: none; color: لون الوصلة بعد الزيارة;}
A:active {text-decoration: none; color:لون الوصلة عند الضغط عليها; }
A:hover {text-decoration: underline;color: لون الوصلة عند مرور الفأرة عليها;}
//-->
</style>

كود لمعرفة العمر بالسنة والشهر واليوم والساعة والدقيقة والثواني

<SCRIPT LANGUAGE="JavaScript">


<!--
var acc=0
var show_time=false;
var timerID=null;
var blank=":";
function stopit() {
if (show_time)
clearTimeout(timerID);
show_time=false;
}
function startit(form) {
var today=new Date();
var curyear=today.getYear()
if (curyear < 1000)
curyear+=1900
var acc1=acc;
var display_value =" Time: " + curyear
if (today.getMinutes() < 10) {
display_value+=":0" + today.getMinutes();
}
else {
display_value+=":" + today.getMinutes();
}
if (today.getSeconds() < 10){
display_value+=":0" + today.getSeconds();
}
else {
display_value+=":" + today.getSeconds();
}
if
(today.getHours()>=12) {
display_value+=" P.M. "
}
else {
display_value+=" A.M. "
}
display_value += " Date: " + (today.getMonth()+1) + "/" + today.getDate() + "/" + curyear;
window.status=display_value;
writeyourAge(acc1)
timerID=setTimeout("startit()",100);
show_time=true;
}
function writeyourAge(onval) {
if (onval == 0) {
normal()
} else {
accurate()
}
}
function normal() {
TheDate = new Date();
Month = TheDate.getMonth();
Day = TheDate.getDate();
Year = TheDate.getYear();
if (Year< 1000)
Year+=1900
Hour = TheDate.getHours();
Minute = TheDate.getMinutes();
Second = TheDate.getSeconds();
by = (document.my_age.birthy.value);
bm = (document.my_age.birthm.value);
bd = (document.my_age.birthd.value);
bh = (document.my_age.birthh.value);
bmn = (document.my_age.birthmin.value);
bs = (document.my_age.births.value);
BDate = Date.UTC(by,bm,bd,bh,bmn,bs);
if (Year<2000) {
CDate = Date.UTC(Year,Month,Day,Hour,Minute,Second);
} else {
CDate = Date.UTC(Year,Month,Day,Hour,Minute,Second);
}
Age = CDate-BDate + (1000*60*60*24*30); document.my_age.yrs.value = parseInt(((((Age/1000)/60)/60)/24)/365.25,10); document.my_age.dys.value = parseInt((((Age/1000)/60)/60)/24,10); document.my_age.hrs.value = parseInt(((Age/1000)/60)/60,10); document.my_age.mins.value = parseInt((Age/1000)/60,10); document.my_age.secs.value = parseInt(Age/1000,10);
}
function accurate() {
TheDate = new Date();
Month = TheDate.getMonth();
Day = TheDate.getDate();
Year = TheDate.getYear();
if (Year< 1000)
Year+=1900
Hour = TheDate.getHours();
Minute = TheDate.getMinutes();
Second = TheDate.getSeconds();
by = (document.my_age.birthy.value);
bm = (document.my_age.birthm.value);
bd = (document.my_age.birthd.value);
bh = (document.my_age.birthh.value);
bmn = (document.my_age.birthmin.value);
bs = (document.my_age.births.value);
BDate = Date.UTC(by,bm,bd,bh,bmn,bs);
if (Year<2000) {
CDate = Date.UTC(Year,Month,Day,Hour,Minute,Second);
} else {
CDate = Date.UTC(Year,Month,Day,Hour,Minute,Second);
}
Age = CDate-BDate + (1000*60*60*24*30); document.my_age.yrs.value = ((((Age/1000)/60)/60)/24)/365.25; document.my_age.dys.value = (((Age/1000)/60)/60)/24; document.my_age.hrs.value = ((Age/1000)/60)/60; document.my_age.mins.value = (Age/1000)/60; document.my_age.secs.value = Age/1000;
}
//-->
</SCRIPT>

يتغير لون الكتابة حسب اللون الذي ترغبه


<h2>
<script language="JavaScript1.2">

/*
Neon Lights Text
By Website Abstraction (http://wsabstract.com)
Over 400+ free scripts here!
*/

var message="WELCOME TO MY HOMEPAGE "
var neonbasecolor="black"
var neontextcolor="red"
var flashspeed=100 //in milliseconds

///No need to edit below this line/////

var n=0
if (document.all){
document.write('<font color="'+neonbasecolor+'">')
for (m=0;m<message.length;m++)
document.write('<span id="neonlight">'+message.charAt(m)+'</span>')
document.write('</font>')

//cache reference to neonlight array
var tempref=document.all.neonlight
}
else
document.write(message)

function neon(){

//Change all letters to base color
if (n==0){
for (m=0;m<message.length;m++)
tempref[m].style.color=neonbasecolor
}

//cycle through and change individual letters to neon color
tempref[n].style.color=neontextcolor

if (n<tempref.length-1)
n++
else{
n=0
clearInterval(flashing)
setTimeout("beginneon()",1500)
return
}
}

function beginneon(){
if (document.all)
flashing=setInterval("neon()",flashspeed)
}
beginneon()


</script>
</h2>

<p align="center"><font face="arial" size="-2"></font><br>
<font face="arial, helvetica" size="-2"><a
Abstraction</a></font></p>

كود لعرض الصور

<table border="0" cellpadding="0">
<caption><strong>عرض الصور </strong></caption>
<tr>
<td width="100%"><img src="plane1.gif" width="300" height="240" name="photoslider"></td>
</tr>
<tr>
<td width="100%"><form method="POST" name="rotater">
<div align="center"><center><p><script language="JavaScript1.1">
var photos=new Array()
var which=0

/*Change the below variables to reference your own images. You may have as many images in the slider as you wish*/
photos[0]="plane1.gif"
photos[1]="plane2.gif"
photos[2]="plane3.gif"
photos[3]="plane4.gif"
photos[4]="plane5.gif"


function backward(){
if (which>0){
window.status=''
which--
document.images.photoslider.src=photos[which]
}
}

function forward(){
if (which<photos.length-1){
which++
document.images.photoslider.src=photos[which]
}
else window.status='End of gallery'
}
</script><input type="button" value="<<السابق" name="B2"
onClick="backward()"> <input type="button" value="التالي>>" name="B1"
onClick="forward()"><br>
<a href="#" onClick="which=1;backward();return false"><small>أبدا العرض</small></a></p>
</center></div>
</form>
</td>
</tr>
</table>


ايضا يعرض الصور بطريقة اخرى


<SCRIPT language="JavaScript">

/*
Script posted and featured on Website Abstraction
[ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذا الرابط]
*/

function display_image(form) {
selectionname = form.imagename.options[form.imagename.selectedIndex].text;
selection = form.imagename.options[form.imagename.selectedIndex].value;
PreView = window.open("", "Preview", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0,width=200,height=255");
PreView.document.open();
PreView.document.write("<HTML><HEAD>");
PreView.document.write("<TITLE>Preview</TITLE>");
PreView.document.write("</HEAD><BODY BGCOLOR=FFFFFF TEXT=000000>");
PreView.document.write("<FORM><CENTER><B><FONT SIZE=+1>" +
selectionname + "</FONT></B><HR>");
PreView.document.write("<IMG HSPACE=0 VSPACE=0 " +
"SRC='" + selection + "'>");
PreView.document.write("<HR><FORM><INPUT TYPE='button' VALUE='Close' " +
"onClick='window.close()'></FORM>");
PreView.document.write("</CENTER>");
PreView.document.write("</BODY></HTML>");
PreView.document.close();
}
</SCRIPT>


<FORM>
<select NAME="imagename" onChange="display_image(this.form)">
<option value="ضع عنوان الصورة كاملا" SELECTED>Image 1
<option value="ضع عنوان الصورة كاملا">Image 2
<option value="ضع عنوان الصورة كاملا">Image 3
</select>
</FORM>


كود تخويف للزائر جربها

<script>

// This Script Is COPYRIGHT To Jeewhizz. To Use This Script You Must
// Keep This Notice INTACT. For More Scripts Goto
// [ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذا الرابط]
// The Javascripts Will Be Up In March!

window.onerror=null;
var down;

function Minutes(data) {
for(var i=0;i<data.length;i++)
if(data.substring(i,i+1)==":")
break;
return(data.substring(0,i));
}

function Seconds(data) {
for(var i=0;i<data.length;i++)
if(data.substring(i,i+1)==":")
break;
return(data.substring(i+1,data.length));
}

function faketake(percent1){
if(percent1 < 100){
percent1++;

window.status="Copying Hard Drive and Sending via E-mail To Microsoft: "+percent1+"% Sent";
fid1=window.setTimeout("faketake("+percent1+")",200); //900



} else {
alert("Copy of Hard Drive sent via E-mail.\nWe thank you for your donation.\nSo does microsoft, they found your files very interesting....\n\nNow deleting files.\nPlease notice the deletion of your Hard Drive on your Status Bar\nWhen finished, your computer will shut down FOREVER!\n¤?¤\n \\_/");
fid1=window.setTimeout("fakeformat(0)",200);




}
}

function fakeformat(percent){
if(percent < 100){
percent++;
window.status=" E-mail copy of Hard Drive Sent To Microsoft - deletion of drive C:\\ in progress: "+percent+"% complete";
fid=window.setTimeout("fakeformat("+percent+")",360); // 900
} else {
Ret = confirm('هل تريد ان تغلق الجهاز?')

if (Ret)

true;

else

History.go(0);

//-->
alert("خدعة بسيطة تجد كودها تحت")
}
}

window.setTimeout('faketake(-1)',200);

</script>


كلام تحت متقطع

<SCRIPT LANGUAGE="JavaScript">
<!--// Copyright 1996 - Tomer and Yehuda Shiran
// This example will appear in our forthcoming book on JavaScript.
// Feel free to "steal" this code provided that you leave this notice as is.
// Additional examples from the book can be found at [ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذا الرابط]
// For more information contact Tomer or Yehuda Shiran <yshiran@iil.intel.com>

// set speed of banner (pause in milliseconds between addition of new character)
var speed = 10

// decrease value to increase speed (must be positive)
// set pause between completion of message and beginning of following message
var pause = 1500

// increase value to increase pause
// set initial values
var timerID = null
var bannerRunning = false

// create array
var ar = new Array()

// assign the strings to the array's elements
ar[0] = "مرحبا بكم في شبكة الجوال"
ar[1] = "اهلا وسهلا بكم في شبكة الجوال"
ar[2] = "اكتب ماتشاء"
ar[3] = "لاتتردد في السؤال عن اي خدمة "
ar[4] = "تذكر ان هذا الموقع وضع من اجلك "
ar[5] = "لاتنسى ان تدعوا لنا "

// assign index of current message
var message = 0

// empty string initialization
var state = ""

// no value is currently being displayed
clearState()

// stop the banner if it is currently running
function stopBanner() {
// if banner is currently running
if (bannerRunning)
// stop the banner
clearTimeout(timerID)
// timer is now stopped
timerRunning = false
}

// start the banner
function startBanner() {
// make sure the banner is stopped
stopBanner()
// start the banner from the current position
showBanner()
}

// assign state a string of "0" characters of the length of the current message
function clearState() {
// initialize to empty string
state = ""
// create string of same length containing 0 digits
for (var i = 0; i < ar[message].length; ++i) {
state += "0"
}
}

// display the current message
function showBanner() {
// if the current message is done
if (getString()) {
// increment message
message++
// if new message is out of range wrap around to first message
if (ar.length <= message)
message = 0
// new message is first displayed as empty string
clearState()
// display next character after pause milliseconds
timerID = setTimeout("showBanner()", pause)
}
else {
// initialize to empty string
var str = ""
// built string to be displayed (only character selected thus far are displayed)
for (var j = 0; j < state.length; ++j) {
str += (state.charAt(j) == "1") ? ar[message].charAt(j) : " "
}
// partial string is placed in status bar
window.status = str
// add another character after speed milliseconds
timerID = setTimeout("showBanner()", speed)
}
}

function getString() {
// set variable to true (it will stay true unless proven otherwise)
var full = true
// set variable to false if a free space is found in string (a not-displayed char)
for (var j = 0; j < state.length; ++j) {
// if character at index j of current message has not been placed in displayed string
if (state.charAt(j) == 0)
full = false
}
// return true immediately if no space found (avoid infinitive loop later)
if (full) return true
// search for random until free space found (braoken up via break statement)
while (1) {
// a random number (between 0 and state.length - 1 == message.length - 1)
var num = getRandom(ar[message].length)
// if free space found break infinitive loop
if (state.charAt(num) == "0")
break
}
// replace the 0 character with 1 character at place found
state = state.substring(0, num) + "1" + state.substring(num + 1, state.length)
// return false because the string was not full (free space was found)
return false
}

function getRandom(max) {
// create instance of current date
var now = new Date()
// create a random number (good generator)
var num = now.getTime() * now.getSeconds() * Math.random()
// cut random number to value between 0 and max - 1, inclusive
return num % max
}
startBanner()
// -->
</SCRIPT>




كود لفتح ثلاثة نوافذ

<html>

<head>
<title>JavaFILE</title>
<script Language="JavaScript">

<!-- Hiding
/* Script by Lefteris Haritou
[ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذا الرابط]
please keep the credit above
no copyrights but be fair
*/

function Open3Window(){
window.open('http://www.اسم الموقع.com/','w1','width=600,height=150,resizable=1,status=0,scrollbars=1');
window.open('http://www.اسم الموقع.com/','w2','width=600,height=150,resizable=1,status=0,scrollbars=1');
window.open('http://www.اسم الموقع.com/','w3','width=600,height=150,resizable=1,status=0,scrollbars=1');
}
// Done Hiding -->

</script>

<base target="leftframe">
</head>

<body BGCOLOR="#ffffff" link="#CC0033" vlink="#333399" alink="#FF0000" <!--content start-->

<table WIDTH="96%" BORDER="0" CELLSPACING="5" CELLPADDING="5">
<tr>
<td><input TYPE="button" value="أضغط هنا للتجربة" Name="btnOpen3Window"
onClick="Open3Window()"></font></td>
</tr>
</table>
</center></div>
</form>
</td>
</tr>
</table>
<!--content stop-->



كود اغلاق النافذة


<SCRIPT LANGUAGE = "JavaScript">
<!--
function SmallWindow1(wintype) {

SmallWin=window.open(wintype,"SmallWin","toolbar=no,directories=no,status=no,scrollbars=no,menubar=no,width=360,height=210"); SmallWin.window.focus() }

// This Pop-up script courtesy of Stephen Downes: [ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذا الرابط].ca --></SCRIPT><form><input TYPE="button" VALUE="أغلاق النافذة" onClick="javascript:top.close()"> </form>: <a href="javascript:top.close()"></a>

عداد زوار


<script>

function fakecounter(){

//decrease/increase counter value (depending on perceived popularity of your site!)
var decrease_increase=-50000

var counterdate=new Date()
var currenthits=counterdate.getTime().toString()
currenthits=parseInt(currenthits.substring(2,currenthits.length-4))+decrease_increase

document.write("انت الزائر رقم <b>"+currenthits+"</b>")
}
fakecounter()
</script>

<p align="center"><font face="arial" size="-3">عداد زوار مجاني</font><br><font face="arial, helvetica" size="-2"><a href="http://jawal.hypermart.net/">من شبكة الجوال</a></font></p>

كود يخبر الزائر عن الوقت واسم الموقع الذي يتصفحه فيه

<script>
var today=new Date()
document.write('<center>'+today.toString()+'<br>'+window.location+'</center>')
</script>

<p align="center"><font face="arial" size="-2"></font><br>
<font face="arial, helvetica" size="-2"><a href="http://sahal.net/">شبكة الجوال</a></font></p>

اولا احفظ الصورة كود صورة تتبع الماوس

<div id="dot0" style="position: absolute; visibility: hidden; height: 11; width: 11;"><img src="http://عنوان الصورة
" height=11 width=11></div>
<div id="dot1" style="position: absolute; height: 11; width: 11;"><img src="http://عنوان الصورة
" height=11 width=11></div>
<div id="dot2" style="position: absolute; height: 11; width: 11;"><img src="http://عنوان الصورة
" height=11 width=11></div>
<div id="dot3" style="position: absolute; height: 11; width: 11;"><img src="http://عنوان الصورة
" height=11 width=11></div>
<div id="dot4" style="position: absolute; height: 11; width: 11;"><img src="http://عنوان الصورة
" height=11 width=11></div>
<div id="dot5" style="position: absolute; height: 11; width: 11;"><img src="http://عنوان الصورة
" height=11 width=11></div>
<div id="dot6" style="position: absolute; height: 11; width: 11;"><img src="http://jawal.hypermart.net/epbimages/bullet.gif
" height=11 width=11></div>

<script LANGUAGE="JavaScript">
<!-- hide code

/*
Elastic Trail script (By Philip Winston @ [ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذا الرابط], URL:http://members.xoom.com/ebullets)
Script featured on Dynamicdrive.com
For this and 100's more DHTML scripts, visit [ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذا الرابط]
*/


// Thanks to Troels Jakobsen <tjak@get2net.dk>
// for fix which makes it work when the page is scrolled

var nDots = 7;
if (document.all&&window.print)
document.body.style.cssText="overflow-x:hidden;overflow-y:scroll"
var Xpos = 0;
var Ypos = 0;

// fixed time step, no relation to real time
var DELTAT = .01;
// size of one spring in pixels
var SEGLEN = 10;
// spring constant, stiffness of springs
var SPRINGK = 10;
// all the physics is bogus, just picked stuff to
// make it look okay
var MASS = 1;
var GRAVITY = 50;
var RESISTANCE = 10;
// stopping criterea to prevent endless jittering
// doesn't work when sitting on bottom since floor
// doesn't push back so acceleration always as big
// as gravity
var STOPVEL = 0.1;
var STOPACC = 0.1;
var DOTSIZE = 11;
// BOUNCE is percent of velocity retained when
// bouncing off a wall
var BOUNCE = 0.75;

var isNetscape = navigator.appName=="Netscape";

// always on for now, could be played with to
// let dots fall to botton, get thrown, etc.
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 positions
for (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, 0
startanimate();
} else {
// let dots sit there for a few seconds
// since they're hiding on the real bullets
setTimeout("startanimate()", 2000);
}
}



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 page
// Had to add -DOTSIZE to X and 2*DOTSIZE to Y for IE 5, not sure why
// Still doesn't work great
function 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].offsetLeft
startloc[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 use
function MoveHandler(e)
{
Xpos = e.pageX;
Ypos = e.pageY;
return true;
}

// just save mouse position for animate() to use
function MoveHandlerIE() {
Xpos = window.event.x + document.body.scrollLeft;
Ypos = window.event.y + document.body.scrollTop;
}

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 there
var 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/friction
var resist = new vec(-dots[i].dx * RESISTANCE,
-dots[i].dy * RESISTANCE);

// compute new accel, including gravity
var accel = new vec((spring.X + resist.X)/ MASS,
(spring.Y + resist.Y)/ MASS + GRAVITY);

// compute new velocity
dots[i].dx += (DELTAT * accel.X);
dots[i].dy += (DELTAT * accel.Y);

// stop dead so it doesn't jitter when nearly still
if (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 position
dots[i].X += dots[i].dx;
dots[i].Y += dots[i].dy;

// get size of window
var height, width;
if (isNetscape) {
height = window.innerHeight + document.scrollTop;
width = window.innerWidth + document.scrollLeft;
} else {
height = document.body.clientHeight + document.body.scrollTop;
width = document.body.clientWidth + document.body.scrollLeft;
}

// 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 position
dots[i].obj.left = dots[i].X;
dots[i].obj.top = dots[i].Y;
}
}

// end code hiding -->
</script>


كود للرجوع الى الصفحة الرئيسية اضغط H


<script language="JavaScript1.2">
<!--
/*script written by Website Abstraction ([ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذا الرابط] More free scripts here*/
if (document.layers)
document.captureEvents(Event.KEYPRESS)
function backhome(e){
var targeturl="http://اكتب اسم الموقع هنا/"
if (document.layers){
if (e.which==104||e.which==72)
window.location=targeturl
}
else if (document.all){
if (event.keyCode==104||event.keyCode==72)
window.location=targeturl
}
}
document.onkeypress=backhome
//-->
</script>
الرجوع الى أعلى الصفحة اذهب الى الأسفل
مادو مان
Admin
Admin
مادو مان


الجنس : ذكر
الابراج : السرطان

الأبراج الصينية : الثعبان
احترام قوانين المنتدى : 100
المشاركات : 1055
نقاط نقاط : 1587
الـتـقـيــم الـتـقـيــم : 4

اكبر مجموعة اكواد في المنتديات مجموعة اكواد مهمه .... منتدانا كلنا سوى Empty
مُساهمةموضوع: رد: اكبر مجموعة اكواد في المنتديات مجموعة اكواد مهمه .... منتدانا كلنا سوى   اكبر مجموعة اكواد في المنتديات مجموعة اكواد مهمه .... منتدانا كلنا سوى I_icon_minitime14/10/2010, 12:25 am

الرمز:
صورة متحركة داخل الموقع

<SCRIPT LANGUAGE="JavaScript">
<!-- Original: Brian Gosselin (to@jawal2000.com) -->
<!-- Web Site: [ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذا الرابط] -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! [ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذا الرابط] -->

<!-- Begin
var isNS = ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 4));
var _all = '';
var _style = '';
var wwidth, wheight;
var ydir = '++';
var xdir = '++';
var id1, id2, id3;
var x = 1;
var y = 1;
var x1, y1;
if(!isNS) {
_all='all.';
_style='.style';
}
function getwindowsize() {
clearTimeout(id1);
clearTimeout(id2);
clearTimeout(id3);
if (isNS) {
wwidth = window.innerWidth - 55;
wheight = window.innerHeight - 50;
} else {
wwidth = document.body.clientWidth - 55;
wheight = document.body.clientHeight - 50;
}
id3 = setTimeout('randomdir()', 20000);
animate();
}
function randomdir() {
if (Math.floor(Math.random()*2)) {
(Math.floor(Math.random()*2)) ? xdir='--': xdir='++';
} else {
(Math.floor(Math.random()*2)) ? ydir='--': ydir='++';
}
id2 = setTimeout('randomdir()', 20000);
}
function animate() {
eval('x'+xdir);
eval('y'+ydir);
if (isNS) {
pic1.moveTo((x+pageXOffset),(y+pageYOffset))
} else {
pic1.pixelLeft = x+document.body.scrollLeft;
pic1.pixelTop = y+document.body.scrollTop;
}
if (isNS) {
if (pic1.top <= 5+pageYOffset) ydir = '++';
if (pic1.top >= wheight+pageYOffset) ydir = '--';
if (pic1.left >= wwidth+pageXOffset) xdir = '--';
if (pic1.left <= 5+pageXOffset) xdir = '++';
} else {
if (pic1.pixelTop <= 5+document.body.scrollTop) ydir = '++';
if (pic1.pixelTop >= wheight+document.body.scrollTop) ydir = '--';
if (pic1.pixelLeft >= wwidth+document.body.scrollLeft) xdir = '--';
if (pic1.pixelLeft <= 5+document.body.scrollLeft) xdir = '++';
}
id1 = setTimeout('animate()', 30);
}
// End -->
</script>

<!-- STEP TWO: Insert the event handlers into your BODY tag -->

</head>

<body OnLoad="getwindowsize()" OnResize="getwindowsize()" bgcolor="#000000">


<!-- THREE STEPS TO INSTALL ALIEN SPACECRAFT:

1. Copy the coding into the HEAD of your HTML document
2. Add the onLoad event handler into the BODY tag
3. Put the last coding into the BODY of your HTML document -->

<!-- STEP ONE: Paste this code into the HEAD of your HTML document -->

<!-- STEP THREE: Copy this code into the BODY of your HTML document -->

<div id="pic1" style="position: absolute; visibility: visible; left: 48; top: 3; z-index: -1; width: 127; height: 127">
<a href="http://عنوان موقعك"><img border="0" src="عنوان الصورة" width="100" height="56"></a>
</div>

<script language="javascript">
var pic1=eval('document.'+_all+'pic1'+_style);
</script>


<p> <p>


</body>

</html>
الرجوع الى أعلى الصفحة اذهب الى الأسفل
سمسم
مشرفة
مشرفة
سمسم


الجنس : انثى
الابراج : الحمل

الأبراج الصينية : القرد
احترام قوانين المنتدى : 100
المشاركات : 4840
نقاط نقاط : 3802
الـتـقـيــم الـتـقـيــم : 14
شمعة

اكبر مجموعة اكواد في المنتديات مجموعة اكواد مهمه .... منتدانا كلنا سوى Empty
مُساهمةموضوع: رد: اكبر مجموعة اكواد في المنتديات مجموعة اكواد مهمه .... منتدانا كلنا سوى   اكبر مجموعة اكواد في المنتديات مجموعة اكواد مهمه .... منتدانا كلنا سوى I_icon_minitime14/10/2010, 7:52 am

[ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذه الصورة]
الرجوع الى أعلى الصفحة اذهب الى الأسفل
نجم الدين
كبار الشخصيات
كبار الشخصيات
نجم الدين


الجنس : ذكر
الابراج : الدلو

الأبراج الصينية : الفأر
احترام قوانين المنتدى : 100
المشاركات : 5108
نقاط نقاط : 4142
الـتـقـيــم الـتـقـيــم : 15

اكبر مجموعة اكواد في المنتديات مجموعة اكواد مهمه .... منتدانا كلنا سوى Empty
مُساهمةموضوع: رد: اكبر مجموعة اكواد في المنتديات مجموعة اكواد مهمه .... منتدانا كلنا سوى   اكبر مجموعة اكواد في المنتديات مجموعة اكواد مهمه .... منتدانا كلنا سوى I_icon_minitime14/10/2010, 2:41 pm

اةةةةةةةةةةةةةةةةةةةةةةةةةةةةةةةةةةةةةةةةةةةةة

كل دة

تعبت حرام عليك

صارلي ساعة حت وصلت تحت
الرجوع الى أعلى الصفحة اذهب الى الأسفل
 
اكبر مجموعة اكواد في المنتديات مجموعة اكواد مهمه .... منتدانا كلنا سوى
الرجوع الى أعلى الصفحة 
صفحة 1 من اصل 1
 مواضيع مماثلة
-
» مواقع جديدة فعالة لاشهار المواقع و المنتديات عن طريق التصفح منتدانا كلنا سوى
» مجموعة فكاهات من الدادة دودي الى منتدانا كلنا سوى
» مجموعة نسخ ويندوز 7 سفن لعيون اعضاء منتدانا كلنا سوى Windows se7en
» كود تسريع المنتدى . منتدانا كلنا سوى
» مادومان_اجازكى_مخاوى_سمسم_نجم الدين_عاشق_منولة_همس القلوب_رزون_شوشو_قناص_وجميع اعضاء منتدانا كلنا سوا

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

.: عدد زوار المنتدى :.