|
جافا سكريبت مجانية |
![]() |
آلة
بحث
<!-- BEGIN 37.com FREE SEARCH FORM
-->
<center><br><script><!--
function q3(){var t=document.qf.qu.value;
parent.location.href="http://home.37.com/?"+t;}//-->
</script><table
background="http://img.37.com/37.gif"
border="2"
cellspacing="0" cellpadding="50"><tr><td>
<form name="qf"
onSubmit="q3();return false;">
<input type="text"
name="qu">
<input type="submit"
value="SEARCH">
</td></tr></form></table>
<a href="http://37.com/"
target="_top">
<font face="arial"
size="-1">
Type once, Get results from 37 search
engines!
</a></font><br></center>
<!-- END 37.com FREE SEARCH FORM -->
-------------------------
ساعة
<html>
<head>
<title>Floating Time</title>
<script
language="JavaScript">
// Instructions:
// This script combines a bunch of
different scripts together to
// create the effect of a "floating
clock." First off, the browser
// requirements are IE 4.0+. Other
browsers will work,
// but the clock will be in the status
bar. Don't worry, there's
// a browser detector included, to keep
the script completely bug-free.
// I've commented out all of the different
sections, to try and make
// it a little easier to understand.
Here's a list of the features that
// this "mega-script" includes:
Real time clock, message based on the time,
// browser detector, floating display, and
AM/PM. There's very little
// that you have to do to set this up;
just the font size and color.
// Start Time Function
function makeclock() {
// Declare the time variables
var runTime = new Date()
var hours = runTime.getHours()
var minutes = runTime.getMinutes()
var seconds = runTime.getSeconds()
var dn = "AM"
var msg = null
if (hours > 12) {
dn = "PM"
hours -= 12
}
if (hours == 0) {
hours = 12
}
// After all the definitions for "hours" are done, make the
timely messages
if (hours <= 12 && dn == "AM") {
msg = "صباح
الخير"
}
else if (hours <= 5 && dn == "PM") {
msg = "مساء
الخير"
}
else {
msg = "مساء
الورد"
}
// Continue on with regular time function
if (minutes <= 9) {
minutes = "0" + minutes
}
if (seconds <= 9) {
seconds = "0" + seconds;
}
currtime = hours + ":" + minutes + ":" + seconds +
" " + dn
// Make sure that the browser is IE 4.0+ or compatible
if (document.all) {
currtime += "<br>" + msg
var html
document.all.clockface.innerHTML = currtime
}
// If the browser's not IE 4.0+, the clock displays in the status bar
else {
currtime += " - " + msg
window.status = currtime
}
// Make sure that the clock keeps going
var keepgoing = setTimeout("makeclock()", 1000)
// Start the floater function
check()
}
// End Time Function
// Start floater code
var mover = null
if
(navigator.appName.indexOf("Netscape") != -1) {
var mover = "document.clockface.top = window.pageYOffset"
}
else {
var mover = "clockface.style.pixelTop = document.body.scrollTop +
10"
}
function check() {
object = "clockface"
eval(mover)
setTimeout("check()", 0)
}
// End floater code
</script>
</head>
<!-- Don't forget the onLoad event
handler -->
<body
onLoad="makeclock()">
<!-- Begin Style Sheet -->
<!-- (to make the clock look pretty)
-->
<style type="text/css">
#clockface {
background-color : White;
border: 2px solid black;
font-family : tahoma, Geneva, Arial, Helvetica, sans-serif;
font-size : 10pt;
font-style : normal;
padding : 1;
color : Black;
position:absolute;
visibility:show;
left:10px;
top:10px;
z-index:0
}
</style>
<!-- End Style Sheet -->
<!-- Begin Clockface HTML -->
<div id="float">
<div id="clockface">
</div>
</div>
<!-- End Clockface HTML -->
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
</body>
</html>
------------------
نص
يومض أسفل
الشاشة
<script
language="JavaScript">
<!--
var x = 0
var speed = 300
var text = "Mohammed Bin Salman"
function Blinky() {
window.status = text
setTimeout("Blinky2()", speed)
}
function Blinky2() {
window.status = " "
setTimeout("Blinky()", speed)
}
Blinky()
//-->
//http://www.saudint.com
</script>
------------------------------
في
الرأس
<SCRIPT
LANGUAGE="JavaScript">
<!-- 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">
<!-- Begin
function popUp() {
props=window.open('ضع
عنوان الصفحة
هنا', 'poppage', 'toolbars=0, scrollbars=0, location=0,
statusbars=0, menubars=0, resizable=1, width=500, height=500, left = 150, top =
50');
}
// End -->
</script>
في
البودي
<BODY
onLoad="javascript:popUp()">
----------------------------
ألوان
حول الماوس
<script
LANGUAGE="JavaScript">
/*
walooody@hotmail.com
this code make by Prince Waleed
from Saudi Aribia
*/
<!--
var Clrs=new
Array('ff0000','00ff00','3355ff','ff00ff','ffff00','00ffff','ffa000')
var amount=10;
var Xpos = 0;
var Ypos = 0;
if (document.layers){
for (i = 0; i < amount; i++)
{document.write('<layer name=nstrs'+i+'
top=0 left=0 width='+i/2+' height='+i/2+' bgcolor=#ff0000></layer>')}
window.captureEvents(Event.MOUSEMOVE);
function nsMouse(evnt){
Xpos = window.pageYOffset+evnt.pageX+1;
Ypos = window.pageYOffset+evnt.pageY+4;
}
window.onMouseMove = nsMouse;
}
else if (document.all){
document.write('<div
id="ieDiv" style="position:absolute;top:0px;left:0px">'
+'<div id="c"
style="position:relative">');
for (i = 0; i < amount; i++)
{document.write('<div
style="position:absolute;top:0px;left:0px;width:'+i/2+';height:'+i/2+';font-size:'+i/2+'"></div>')}
document.write('</div></div>');
function ieMouse(){
Ypos = document.body.scrollTop+event.y+4;
Xpos = document.body.scrollLeft+event.x+1;
}
document.onmousemove = ieMouse;
}
function animateLogo(){
if (document.layers){
for (i = 0; i < amount; i++)
{
for (n=0; n < Clrs.length; n++)
{var x=Math.round(Math.random()*[n])}
document.layers['nstrs'+i].bgColor=Clrs[x];
if (i < amount-1)
{
document.layers['nstrs'+i].top=document.layers['nstrs'+(i+1)].top;
document.layers['nstrs'+i].left=document.layers['nstrs'+(i+1)].left;
}
else
{
document.layers['nstrs'+i].top = Ypos;
document.layers['nstrs'+i].left =Xpos;
}
}
}
else if (document.all){
for (i = 0; i <
amount; i++)
{
for (n=0; n < Clrs.length; n++){var
x=Math.round(Math.random()*[n])}
ieDiv.all.c.all[i].style.background=Clrs[x];
if (i < amount-1)
{
ieDiv.all.c.all[i].style.top=ieDiv.all.c.all[i+1].style.top;
ieDiv.all.c.all[i].style.left=ieDiv.all.c.all[i+1].style.left;
}
else
{
ieDiv.all.c.all[i].style.top = Ypos;
ieDiv.all.c.all[i].style.left =Xpos;
}
}
}
setTimeout("animateLogo()",10);
}
animateLogo();
// -->
</script>
-----------------
بحث
في جوجل
<center>
/*
walooody@hotmail.com
this code make by Prince Waleed
from Saudi Aribia
*/
<form
action="http://www.google.com/search" method="get"
target="_blank">
<table
height="28" cellSpacing="0" cellPadding="0">
<tbody>
<tr>
<td height="24"><a style="COLOR: #00009c;
TEXT-DECORATION: none" href="http://www.google.com/"><img
alt="Google"
src="http://www.google.com/logos/Logo_40wht.gif"
align="absMiddle" border="0" width="128"
height="53"></a>
<input maxLength="255" size="25"
name="q" style="color: #800000; border: 1 solid #000000">
<input type="submit" value="ابحث"
name="btnG" style="color: #FFFFFF; font-family: Tahoma;
background-color: #333300; border: 1 solid #000000"></td>
</tr>
</tbody>
</table>
</form>
</center><!-- Search Google
-->
-------------------------
يوضع
في البودي
عداد زوار
<!-- BEGIN FASTCOUNTER CODE -->
<a
href="http://member.bcentral.com/cgi-bin/fc/fastcounter-login?3209299"
target="_top">
<img border="0"
src="http://fastcounter.bcentral.com/fastcounter?3209299+6418605"></a>
<!-- END FASTCOUNTER CODE -->
<br>
<!-- BEGIN FASTCOUNTER LINK -->
<font face="arial"
size="1">
<a
href="http://fastcounter.bcentral.com/fc-join"
target="_top">FastCounter by
bCentral</a></font><br>
<!-- END FASTCOUNTER LINK -->
-----------
2عداد
زوار
<a target="_top"
href="http://t.extreme-dm.com/?login=ilysm">
<img
src="http://u1.extreme-dm.com/i.gif" height=38
border=0 width=41
alt=""></a><script
language="javascript1.2"><!--
EXs=screen;EXw=EXs.width;navigator.appName!="Netscape"?
EXb=EXs.colorDepth:EXb=EXs.pixelDepth;//-->
</script><script
language="javascript"><!--
EXd=document;EXw?"":EXw="na";EXb?"":EXb="na";
EXd.write("<img
src=\"http://t0.extreme-dm.com",
"/0.gif?tag=ilysm&j=y&srw="+EXw+"&srb="+EXb+"&",
"l="+escape(EXd.referrer)+"\"
height=1 width=1>");//-->
</script><noscript><img
height=1 width=1 alt=""
src="http://t0.extreme-dm.com/0.gif?tag=ilysm&j=n"></noscript>