‏إظهار الرسائل ذات التسميات اكواد الجافا موثرات الخلفيات. إظهار كافة الرسائل
‏إظهار الرسائل ذات التسميات اكواد الجافا موثرات الخلفيات. إظهار كافة الرسائل

الخميس، 3 يناير 2013

كلام يتبع مؤشر الفارة




http://img102.herosh.com/2011/08/28/363480199.gif


الوصف: 
اكتب اي كلام ليتبع حركة مؤشر الفارة.





طريقة التركيب: 
من خطوتين :



1- ضع الكود التالي بمنطقة الـ <head>



الكود:




<style>
.spanstyle {
    position:absolute;
    visibility:visible;
    top:-50px;
    font-size:8pt;
    font-family:Verdana;
    font-weight:bold;
}
</style>
<script>


// Your trailing message.
var message="تو ايجى سينما "
message=message.split(" ")


var step=8 
var stepbasic=8

// Do not edit the varianles below
var x,y
var flag=0
var xpos=new Array()
for (i=0;i<=message.length-1;i++) {
    xpos[i]=-100
}

var ypos=new Array()
for (i=0;i<=message.length-1;i++) {
    ypos[i]=-100
}

var spacebetweenwords=new Array()
for (i=0;i<=message.length-1;i++) {
    spacebetweenwords[i]=stepbasic+step*message[i].length-1
}

var colorstep=Math.round(255/message.length-1)

var colorrgb=new Array()
for (i=0;i<=message.length-1;i++) {
    colorrgb[i]=i*colorstep
}

var wordcolor=new Array()
for (i=0;i<=message.length-1;i++) {
    var colhex_left = Math.floor(colorrgb[i]/16)
    var colhex_right= colorrgb[i]-(colhex_left*16)
    if (colhex_left == 10) {colhex_left="A"}
    if (colhex_left == 11) {colhex_left="B"}
    if (colhex_left == 12) {colhex_left="C"}
    if (colhex_left == 13) {colhex_left="D"}
    if (colhex_left == 14) {colhex_left="E"}
    if (colhex_left == 15) {colhex_left="F"}  
    if (colhex_right == 10) {colhex_right="A"}
    if (colhex_right == 11) {colhex_right="B"}
    if (colhex_right == 12) {colhex_right="C"}
    if (colhex_right == 13) {colhex_right="D"}
    if (colhex_right == 14) {colhex_right="E"}
    if (colhex_right == 15) {colhex_right="F"}    
    wordcolor[i] =""+colhex_left+colhex_right
}

function handlerMM(e){
    x = (document.layers) ? e.pageX : document.body.scrollLeft+event.clientX
    y = (document.layers) ? e.pageY : document.body.scrollTop+event.clientY
    flag=1
}

function makesnake() {
    if (flag==1 && document.all) {
        for (i=message.length-1; i>=1; i--) {
               xpos[i]=xpos[i-1]+spacebetweenwords[i-1]
            ypos[i]=ypos[i-1]
        }
        xpos[0]=x+stepbasic
        ypos[0]=y
    
        for (i=0; i<message.length-1; i++) {
            var thisspan = eval("span"+(i)+".style")
            thisspan.posLeft=xpos[i]
            thisspan.posTop=ypos[i]
        }
    }
    
    else if (flag==1 && document.layers) {
        for (i=message.length-1; i>=1; i--) {
               xpos[i]=xpos[i-1]+spacebetweenwords[i-1]
            ypos[i]=ypos[i-1]
        }
        xpos[0]=x+stepbasic
        ypos[0]=y
    
        for (i=0; i<message.length-1; i++) {
            var thisspan = eval("document.span"+i)
            thisspan.left=xpos[i]
            thisspan.top=ypos[i]
        }
    }
        var timer=setTimeout("makesnake()",30)
}

</script>
 







2- ضع الكود التالي بمنطقة الـ <body>



الكود:




<body onLoad="makesnake()" style="width:100%;overflow-x:hidden;overflow-y:scroll">

<script>
<!-- Beginning of JavaScript -

for (i=0;i<=message.length-1;i++) {
    document.write("<span id='span"+i+"' class='spanstyle'>")
    document.write("<font color='"+wordcolor[i]+wordcolor[i]+wordcolor[i]+"'>"+message[i]+"</font>")
    document.write("</span>")
}

if (document.layers){
    document.captureEvents(Event.MOUSEMOVE);
}
document.onmousemove = handlerMM;

// - End of JavaScript - -->
</script>


<DIV id="deletethisblock" style="position:absolute;top:20px;left:20px;">
<font size=1 face=Verdana>

مؤشر فارة يتبع مؤشر فارة





http://img102.herosh.com/2011/08/28/363480199.gif


الوصف: مؤشر فارة يتابع مؤشر الفارة.




طريقة التركيب: 
ضع الكود بمنطقة الـ



الكود:


<p><!--webbot bot="HTMLMarkup" startspan --><style type="text/css">
BODY {overflow: scroll; overflow-x: hidden;}
</style>
<!--webbot bot="HTMLMarkup" endspan -->
<!--webbot bot="HTMLMarkup" startspan --><script language="JavaScript1.2">
<!--

/*
Submitted by Marcin Wojtowicz [one_spook@hotmail.com] 
Featured on Website Abstraction (http://wsabstract.com)
For this and over 400+ free scripts, visit http://wsabstract.com
*/

var trailLength = 8 // The length of trail (8 by default; put more for longer "tail")
var path = "http://soft.vip600.com/java-tests/cursor.gif" // URL of your image

// do NOT modify anything beyond this point
var isIE = false,isNav = false,range = "all.",style = ".style",i,d = 0
var topPix = ".pixelTop",leftPix = ".pixelLeft",images,storage
if (document.layers) { // browser sniffer
    isNav = true,range = "layers.",style = "",topPix = ".top",leftPix = ".left"
} else if (document.all) {
    isIE = true
}
function initTrail() { // prepares the script
    images = new Array() // prepare the image array
    for (i = 0; i < parseInt(trailLength); i++) {
        images[i] = new Image()
        images[i].src = path
    }
    storage = new Array() // prepare the storage for the coordinates
    for (i = 0; i < images.length*3; i++) {
        storage[i] = 0
    }
    for (i = 0; i < images.length; i++) { // make divs for IE and layers for Navigator
        (isIE) ? document.write('<div id="obj' + i + '" style="position: absolute; z-Index: 100; height: 0; width: 0"><img src="' + images[i].src + '"></div>') : document.write('<layer name="obj' + i + '" width="0" height="0" z-index="100"><img src="' + images[i].src + '"></layer>')
    }
    trail()
}
function trail() { // trailing function
    for (i = 0; i < images.length; i++) { // for every div/layer
        eval("document." + range + "obj" + i + style + topPix + "=" + storage[d]) // the Y-coordinate
        eval("document." + range + "obj" + i + style + leftPix + "=" + storage[d+1]) // the X-coordinate
        d = d+2
    }
    for (i = storage.length; i >= 2; i--) { // save the coordinate for the div/layer that's behind
        storage[i] = storage[i-2]
    }
    d = 0 // reset for future use
    var timer = setTimeout("trail()",10) // call recursively 
}
function processEvent(e) { // catches and processes the mousemove event 
    if (isIE) { // for IE
        storage[0] = window.event.y+document.body.scrollTop+10
        storage[1] = window.event.x+document.body.scrollLeft+10
    } else { // for Navigator
        storage[0] = e.pageY+12
        storage[1] = e.pageX+12
    }
}
if (isNav) {
    document.captureEvents(Event.MOUSEMOVE) // Defines what events to capture for Navigator
}
if (isIE || isNav) { // initiates the script
    initTrail() 
    document.onmousemove = processEvent // start capturing
}
//-->
</script>
<!--webbot bot="HTMLMarkup" endspan -->
</p></td></tr><tr><td align="center">    <br><br>[ <a href="modules.php?name=Java&op=listarticles&javid=9">العودة الى مؤثرات الفارة</a> | <a href="modules.php?name=Java">القائمة الرئيسية لمكتبة الجافا</a> ]</td></tr></table></td><td style='border-left: 1px solid #C8C8C8'></td></tr><tr><td width='1%'><img border=0 src='themes/new_eqla3soft/images/brd_dwn_right.gif'></td><td width='100%' style='border-bottom: 1px solid #C8C8C8'><td width='1%'><img border=0 src='themes/new_eqla3soft/images/bord_down_left.gif'></td></tr></table></center><br><center><SCRIPT src="http://www.vip600.com/adsFoot.js"></SCRIPT></center></td></tr></table></div></div><div class=footermain><div class=footer1>[ <a href='best-downloads'>برامج هامة</a> ا <a href='http://3g.vip600.com'>نوكيا الجيل الثالث</a> ا <a href='modules.php?name=Stories_Archive'>المقالات والأخبار</a> ا <a href='speedtest.html'>سرعة اتصالك</a> ا <a href='modules.php?name=Downloads&d_op=viewdownload&cid=62'>كتب عربية</a> ا <a href='typingtest.html'>سرعة طباعتك</a> ا <a href='modules.php?name=ESIYS'>اربط موقعك بنا</a> ا <a href='modules.php?name=MailArchives'>ارشيف الرسائل</a> ا <a href='maillist.html'>القائمة البريدية</a> ا <a href='http://fav.vip600.com/'>المفضلة</a> ا <br><a href='orbit.html'>اختيارات من الرياض</a> ا <a href='top100.html'>أفضل 100 موقع عربي</a> ا <a href='modules.php?name=Messenger_Status'>حالة الماسنجر</a> ا <a href='modules.php?name=zrkshah'>زخرف اسمك</a> ا <a href='pro.php'>تصفح سريع للبرامج</a> ا <a title='جافا' href='java.html'>جافا</a> ا <a href='modules.php?name=Ads'>اعلن لدينا</a>]</div><div class=footer2><span class=footer><!-- Javascript tag: -->
<!-- begin ZEDO for channel: Vip600 Technology , publisher: Vip600.com , Ad Dimension: Overlay - 1 x 1 -->
<script language="JavaScript">
var zflag_nid="1424"; var zflag_cid="88/31"; var zflag_sid="7"; var zflag_width="1"; var zflag_height="1"; var zflag_sz="31"; 
</script>
<script language="JavaScript" src="http://c5.zedo.com/jsc/c5/fo.js"></script>
<!-- end ZEDO for channel: Vip600 Technology , publisher: Vip600.com , Ad Dimension: Overlay - 1 x 1 --><br><img alt="عداد تو ايجى سينما" src="http://c.statcounter.com/counter.php?sc_project=461288&displayonly=true&sc_random=1328196029"><br>Powered by: <a target="_blank" href="http://phpnuke.org/">    <font size="1" color="#A79DAA">PHP-Nuke</font></a><BR><script src="http://www.vip600.com/copyright.js"></script> <a href="http://www.vip600.com"><font size="1" color="#A79DAA">vip600.com</font></a><BR>Designed by vip600, Translated by coffee4arab.com<br> تم فتح الصفحة في:<font color="#5F5F5F"> 0.018 </font>ثانية</font></span></div></div></body>
</html>

مؤشر فارة يتبع مؤشر فارة




http://img102.herosh.com/2011/08/28/363480199.gif


الوصف: مؤشر فارة يتابع مؤشر الفارة.




طريقة التركيب: 
ضع الكود بمنطقة الـ



الكود:


<p><!--webbot bot="HTMLMarkup" startspan --><style type="text/css">
BODY {overflow: scroll; overflow-x: hidden;}
</style>
<!--webbot bot="HTMLMarkup" endspan -->
<!--webbot bot="HTMLMarkup" startspan --><script language="JavaScript1.2">
<!--

/*
Submitted by Marcin Wojtowicz [one_spook@hotmail.com] 
Featured on Website Abstraction (http://wsabstract.com)
For this and over 400+ free scripts, visit http://wsabstract.com
*/

var trailLength = 8 // The length of trail (8 by default; put more for longer "tail")
var path = "http://soft.vip600.com/java-tests/cursor.gif" // URL of your image

// do NOT modify anything beyond this point
var isIE = false,isNav = false,range = "all.",style = ".style",i,d = 0
var topPix = ".pixelTop",leftPix = ".pixelLeft",images,storage
if (document.layers) { // browser sniffer
    isNav = true,range = "layers.",style = "",topPix = ".top",leftPix = ".left"
} else if (document.all) {
    isIE = true
}
function initTrail() { // prepares the script
    images = new Array() // prepare the image array
    for (i = 0; i < parseInt(trailLength); i++) {
        images[i] = new Image()
        images[i].src = path
    }
    storage = new Array() // prepare the storage for the coordinates
    for (i = 0; i < images.length*3; i++) {
        storage[i] = 0
    }
    for (i = 0; i < images.length; i++) { // make divs for IE and layers for Navigator
        (isIE) ? document.write('<div id="obj' + i + '" style="position: absolute; z-Index: 100; height: 0; width: 0"><img src="' + images[i].src + '"></div>') : document.write('<layer name="obj' + i + '" width="0" height="0" z-index="100"><img src="' + images[i].src + '"></layer>')
    }
    trail()
}
function trail() { // trailing function
    for (i = 0; i < images.length; i++) { // for every div/layer
        eval("document." + range + "obj" + i + style + topPix + "=" + storage[d]) // the Y-coordinate
        eval("document." + range + "obj" + i + style + leftPix + "=" + storage[d+1]) // the X-coordinate
        d = d+2
    }
    for (i = storage.length; i >= 2; i--) { // save the coordinate for the div/layer that's behind
        storage[i] = storage[i-2]
    }
    d = 0 // reset for future use
    var timer = setTimeout("trail()",10) // call recursively 
}
function processEvent(e) { // catches and processes the mousemove event 
    if (isIE) { // for IE
        storage[0] = window.event.y+document.body.scrollTop+10
        storage[1] = window.event.x+document.body.scrollLeft+10
    } else { // for Navigator
        storage[0] = e.pageY+12
        storage[1] = e.pageX+12
    }
}
if (isNav) {
    document.captureEvents(Event.MOUSEMOVE) // Defines what events to capture for Navigator
}
if (isIE || isNav) { // initiates the script
    initTrail() 
    document.onmousemove = processEvent // start capturing
}
//-->
</script>
<!--webbot bot="HTMLMarkup" endspan -->
</p></td></tr><tr><td align="center">    <br><br>[ <a href="modules.php?name=Java&op=listarticles&javid=9">العودة الى مؤثرات الفارة</a> | <a href="modules.php?name=Java">القائمة الرئيسية لمكتبة الجافا</a> ]</td></tr></table></td><td style='border-left: 1px solid #C8C8C8'></td></tr><tr><td width='1%'><img border=0 src='themes/new_eqla3soft/images/brd_dwn_right.gif'></td><td width='100%' style='border-bottom: 1px solid #C8C8C8'><td width='1%'><img border=0 src='themes/new_eqla3soft/images/bord_down_left.gif'></td></tr></table></center><br><center><SCRIPT src="http://www.vip600.com/adsFoot.js"></SCRIPT></center></td></tr></table></div></div><div class=footermain><div class=footer1>[ <a href='best-downloads'>برامج هامة</a> ا <a href='http://3g.vip600.com'>نوكيا الجيل الثالث</a> ا <a href='modules.php?name=Stories_Archive'>المقالات والأخبار</a> ا <a href='speedtest.html'>سرعة اتصالك</a> ا <a href='modules.php?name=Downloads&d_op=viewdownload&cid=62'>كتب عربية</a> ا <a href='typingtest.html'>سرعة طباعتك</a> ا <a href='modules.php?name=ESIYS'>اربط موقعك بنا</a> ا <a href='modules.php?name=MailArchives'>ارشيف الرسائل</a> ا <a href='maillist.html'>القائمة البريدية</a> ا <a href='http://fav.vip600.com/'>المفضلة</a> ا <br><a href='orbit.html'>اختيارات من الرياض</a> ا <a href='top100.html'>أفضل 100 موقع عربي</a> ا <a href='modules.php?name=Messenger_Status'>حالة الماسنجر</a> ا <a href='modules.php?name=zrkshah'>زخرف اسمك</a> ا <a href='pro.php'>تصفح سريع للبرامج</a> ا <a title='جافا' href='java.html'>جافا</a> ا <a href='modules.php?name=Ads'>اعلن لدينا</a>]</div><div class=footer2><span class=footer><!-- Javascript tag: -->
<!-- begin ZEDO for channel: Vip600 Technology , publisher: Vip600.com , Ad Dimension: Overlay - 1 x 1 -->
<script language="JavaScript">
var zflag_nid="1424"; var zflag_cid="88/31"; var zflag_sid="7"; var zflag_width="1"; var zflag_height="1"; var zflag_sz="31"; 
</script>
<script language="JavaScript" src="http://c5.zedo.com/jsc/c5/fo.js"></script>
<!-- end ZEDO for channel: Vip600 Technology , publisher: Vip600.com , Ad Dimension: Overlay - 1 x 1 --><br><img alt="عداد تو ايجى سينما" src="http://c.statcounter.com/counter.php?sc_project=461288&displayonly=true&sc_random=1328196029"><br>Powered by: <a target="_blank" href="http://phpnuke.org/">    <font size="1" color="#A79DAA">PHP-Nuke</font></a><BR><script src="http://www.vip600.com/copyright.js"></script> <a href="http://www.vip600.com"><font size="1" color="#A79DAA">vip600.com</font></a><BR>Designed by vip600, Translated by coffee4arab.com<br> تم فتح الصفحة في:<font color="#5F5F5F"> 0.018 </font>ثانية</font></span></div></div></body>
</html>

دوائر ملونة تتبع مؤشر الفارة













مثال:  حرك مؤشر الفارة.

الوصف: 
دوائر ملونة تتبع مؤشر الفارة وين ما راح.




طريقة التركيب: 
ضع الكود بمنطقة الـ <body>



الكود:


<script>

/*
Cross browser cursor trailer script
By Brian Caputo (bcaputo@icdc.com)
Permission given to Dynamicdrive.com 
to feature the script in it's DHTML archive
For 100's more DHTML scripts and components,
visit Dynamicdrive.com
للمزيد من الجافا سكريبت .. نرجو زيارة موقع إقلاع سوفت http://soft.vip600.com/
*/

B=document.all;
C=document.layers;
T1=new Array("trail1.gif",38,35,"trail2.gif",30,31,"trail3.gif",28,26,"trail4.gif",22,21,"trail5.gif",16,16,"trail6.gif",10,10)
nos=parseInt(T1.length/3)
rate=50
ie5fix1=0;
ie5fix2=0;
for (i=0;i<nos;i++){
createContainer("CUR"+i,i*10,i*10,i*3+1,i*3+2,"","<img src='"+T1[i*3]+"' width="+T1[(i*3+1)]+" height="+T1[(i*3+2)]+" border=0>")}
function createContainer(N,Xp,Yp,W,H,At,HT,Op,St){
with (document){
write((!B) ? "<layer id='"+N+"' left="+Xp+" top="+Yp+" width="+W+" height="+H : "<div id='"+N+"'"+" style='position:absolute;left:"+Xp+"; top:"+Yp+"; width:"+W+"; height:"+H+"; ");
if(St){
if (C)
write(" style='");
write(St+";' ")
}
else write((B)?"'":"");
write((At)? At+">" : ">");
write((HT) ? HT : "");
if (!Op)
closeContainer(N)
}
}
function closeContainer(){
document.write((B)?"</div>":"</layer>")
}
function getXpos(N){
return (B) ? parseInt(B[N].style.left) : C[N].left
}
function getYpos(N){
return (B) ? parseInt(B[N].style.top) : C[N].top
}

function moveContainer(N,DX,DY){
c=(B) ? B[N].style :C[N];c.left=DX;c.top=DY
}
function cycle(){
//if (IE5) 
if (document.all&&window.print){
ie5fix1=document.body.scrollLeft;
ie5fix2=document.body.scrollTop;
}
for (i=0;i<(nos-1);i++){
moveContainer("CUR"+i,getXpos("CUR"+(i+1)),getYpos("CUR"+(i+1)))
}
}
function newPos(e){
moveContainer("CUR"+(nos-1),(B)?event.clientX+ie5fix1:e.pageX+2,(B)?event.clientY+ie5fix2:e.pageY+2
)
}
if(document.layers)
document.captureEvents(Event.MOUSEMOVE)
document.onmousemove=newPos
setInterval("cycle()",rate)
</script>






2- حمل الملف التالي: 
اضغط هنا لتحميل الملف           




الملف يحتوي على 6 صور وهي الدوائر الملونة 
التي تتبع مؤشر الفارة

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

او توضع بأي ملف على السيرفر ويتم تغير امتداد الصور من نفس الكود.





كود اسم موقعك يدور حول مؤشر الفارة




الوصف: 
يمكن وضع اسم موقعك او اي حروف لتتبع مؤشر الفارة.




طريقة التركيب: 
ضع الكود بمنطقة الـ <body>



الكود:




<SCRIPT LANGUAGE="JavaScript1.2">
<!--//

//Circling text trail- Tim Tilton
//Website: http://www.tempermedia.com/
//Visit http://www.dynamicdrive.com for this script and more
//للمزيد من الجافا سكريبت .. نرجو زيارة موقع إقلاع سوفت http://soft.vip600.com/

// اكتب هنا الكلام
var msg='eqla3 soft';

var font='Verdana,Arial';
var size=3; // حجم الخط يصل الى 7
var color='#000000';

// This is not the rotation speed, its the reaction speed, keep low!
// Set this to 1 for just plain rotation w/out drag
var speed=.5;

// This is the rotation speed, set it negative if you want
// it to spin clockwise
var rotation=.2;

// Alter no variables past here!, unless you are good
//---------------------------------------------------

var ns=(document.layers);
var ie=(document.all);
var msg=msg.split('');
var n=msg.length; 
var a=size*15;
var currStep=0;
var ymouse=0;
var xmouse=0;
var scrll=0;
var props="<font face="+font+" size="+size+" color="+color+">";

if (ie)
window.pageYOffset=0

// writes the message
    if (ns){
    for (i=0; i < n; i++)
        document.write('<layer name="nsmsg'+i+'" top=0 left=0 height='+a+' width='+a+'><center>'+props+msg[i]+'</font></center></layer>');
    }
    if (ie){
        document.write('<div id="outer" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
        for (i=0; i < n; i++)
            document.write('<div id="iemsg" style="position:absolute;top:0px;left:0;height:'+a+';width:'+a+';text-align:center;font-weight:regular;cursor:default">'+props+msg[i]+'</font></div>');
            document.write('</div></div>');
    }
    (ns)?window.captureEvents(Event.MOUSEMOVE):0;

function Mouse(evnt){
    ymouse = (ns)?evnt.pageY+20-(window.pageYOffset):event.y; // y-position
    xmouse = (ns)?evnt.pageX+20:event.x-20; // x-position
}

if (ns||ie)
(ns)?window.onMouseMove=Mouse:document.onmousemove=Mouse;
y=new Array();
x=new Array();
Y=new Array();
X=new Array();
for (i=0; i < n; i++){
    y[i]=0;
    x[i]=0;
    Y[i]=0;
    X[i]=0;
}

function makecircle(){ // rotation properties
if (ie) outer.style.top=document.body.scrollTop;
currStep-=rotation;
    for (i=0; i < n; i++){ // makes the circle
        var d=(ns)?document.layers['nsmsg'+i]:iemsg[i].style;
        d.top=y[i]+a*Math.sin((currStep+i*1)/3.8)+window.pageYOffset-15;
        d.left=x[i]+a*Math.cos((currStep+i*1)/3.8)*2; // remove *2 for just a plain circle, not oval
    }
}

function drag(){ // makes the resistance
    scrll=(ns)?window.pageYOffset:0;
    y[0]=Math.round(Y[0]+=((ymouse)-Y[0])*speed);
    x[0]=Math.round(X[0]+=((xmouse)-X[0])*speed);
    for (var i=1; i < n; i++){
        y[i]=Math.round(Y[i]+=(y[i-1]-Y[i])*speed);
        x[i]=Math.round(X[i]+=(x[i-1]-X[i])*speed);

    }
    makecircle();
    // not rotation speed, leave at zero
    setTimeout('drag()',10);
}
if (ns||ie)window.onload=drag;

// -->
</SCRIPT>

كود نجوم تتبع مؤشر الفارة




الوصف: 
نجوم صغيرة تتبع مؤشر الفارة عند تحريكة.




طريقة التركيب: 
ضع الكود بمنطقة الـ <body>



الكود:


<LAYER NAME="a0" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0,0,3,3"></LAYER>
<LAYER NAME="a1" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0,0,3,3"></LAYER>
<LAYER NAME="a2" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0,0,3,3"></LAYER>
<LAYER NAME="a3" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0,0,3,3"></LAYER>
<LAYER NAME="a4" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0,0,3,3"></LAYER>
<LAYER NAME="a5" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0,0,3,3"></LAYER>
<LAYER NAME="a6" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0,0,3,3"></LAYER>

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

/*
Dancing Stars cursor (Submitted by Kurt at kurt.grigg@virgin.net)
Modified and permission granted to Dynamic Drive to feature script in archive
For full source, usage terms, and 100's more DHTML scripts, visit http://dynamicdrive.com
*/

if (document.all){
document.write('<div id="starsDiv" style="position:absolute;top:0px;left:0px">')
for (xy=0;xy<7;xy++)
document.write('<div style="position:relative;width:3px;height:3px;background:#FFFF00;font-size:2px;visibility:visible"></div>')
document.write('</div>')
}

if (document.layers)
{window.captureEvents(Event.MOUSEMOVE);}
var yBase = 200;
var xBase = 200;
var yAmpl = 10;
var yMax = 40;
var step = .2;
var ystep = .5;
var currStep = 0;
var tAmpl=1;
var Xpos = 1;
var Ypos = 1;
var i = 0;
var j = 0;

if (document.all)
{
  function MoveHandler(){
  Xpos = document.body.scrollLeft+event.x;
  Ypos = document.body.scrollTop+event.y;
  }
  document.onmousemove = MoveHandler; 
}

else if (document.layers)
{
  function xMoveHandler(evnt){
  Xpos = evnt.pageX;
  Ypos = evnt.pageY;
  }
  window.onMouseMove = xMoveHandler;
}



function animateLogo() {
if (document.all)
{
 yBase = window.document.body.offsetHeight/4;
 xBase = window.document.body.offsetWidth/4;
}
else if (document.layers)
{
 yBase = window.innerHeight/4 ;
 xBase = window.innerWidth/4;
}

if (document.all)
{
var totaldivs=document.all.starsDiv.all.length
 for ( i = 0 ; i < totaldivs ; i++ )
 {
var tempdiv=document.all.starsDiv.all[i].style
  tempdiv.top = Ypos + Math.cos((20*Math.sin(currStep/20))+i*70)*yBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + i*25)/10);
  tempdiv.left = Xpos + Math.sin((20*Math.sin(currStep/20))+i*70)*xBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + i*25)/10);
 }
}

else if (document.layers)
{
 for ( j = 0 ; j < 7 ; j++ ) 
 {
var templayer="a"+j
  document.layers[templayer].top = Ypos + Math.cos((20*Math.sin(currStep/20))+j*70)*yBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + j*25)/10);
  document.layers[templayer].left =Xpos + Math.sin((20*Math.sin(currStep/20))+j*70)*xBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + j*25)/10);
 }
}
currStep += step;
setTimeout("animateLogo()", 15);
}
animateLogo();
// -->
</script>

كود اتبع الرابط عند وضع مؤشر الفارة




الوصف: سيذهب الزائر 
الى صفحة جديدة 
بمجرد وضع مؤشر الفارة على الرابط.




طريقة التركيب: 
ضع الكود في المكان الذي سيظهر به




الكود:


<a href="http://2-egy-cinema.blogspot.com/" onMouseover="window.location=this.href">ضع مؤشر الفارة هنا</a>

كود بريق يتبع مؤشر الفارة




الوصف: بريق رائع وملون يتبع مؤشر 
الفارة.





طريقة التركيب: 
من خطوتين:



اولاً: ضع الكود التالي بين علامتي الـ

<head> و <head/>




الكود:






<STYLE TYPE="text/css">
<!--

BODY{
overflow:scroll;
overflow-x:hidden;
}

.s1
{
  position  : absolute;
  font-size : 10pt;
  color     : blue;
  visibility: hidden;
}

.s2
{
  position  : absolute;
  font-size : 18pt;
  color     : red;
    visibility : hidden;
}

.s3
{
  position  : absolute;
  font-size : 14pt;
  color     : gold;
    visibility : hidden;
}

.s4
{
  position  : absolute;
  font-size : 12pt;
  color     : lime;
    visibility : hidden;
}

//-->
</STYLE>








ثانياً: ضع الكود التالي بين علامتي الـ

<body> و <body/>



الكود:








<DIV ID="div1" CLASS="s1">*</DIV>
<DIV ID="div2" CLASS="s2">*</DIV>
<DIV ID="div3" CLASS="s3">*</DIV>
<DIV ID="div4" CLASS="s4">*</DIV>

<p align="center"><font face="arial" size="-2">This free script provided by</font><br>
<font face="arial, helvetica" size="-2"><a href="http://javascriptkit.com">JavaScript
Kit</a></font></p>

<SCRIPT LANGUAGE="javascript" TYPE="text/javascript">

/*
Script by Mike McGrath- http://website.lineone.net/~mike_mcgrath
Featured on JavaScript Kit (http://javascriptkit.com)
For this and over 400+ free scripts, visit http://javascriptkit.com
للمزيد من الجافا سكريبت .. نرجو زيارة موقع تو ايجى سينما http://2-egy-cinema.blogspot.com/
*/

var nav = (document.layers);
var tmr = null;
var spd = 50;
var x = 0;
var x_offset = 5;
var y = 0;
var y_offset = 15;

if(nav) document.captureEvents(Event.MOUSEMOVE);
document.onmousemove = get_mouse; 

function get_mouse(e)
{    
  x = (nav) ? e.pageX : event.clientX+document.body.scrollLeft;
  y = (nav) ? e.pageY : event.clientY+document.body.scrollTop;
  x += x_offset;
  y += y_offset;
  beam(1);     
}

function beam(n)
{
  if(n<5)
  {
    if(nav)
    { 
      eval("document.div"+n+".top="+y);
      eval("document.div"+n+".left="+x);
      eval("document.div"+n+".visibility='visible'");
    }  
    else
    {
      eval("div"+n+".style.top="+y);
      eval("div"+n+".style.left="+x);
      eval("div"+n+".style.visibility='visible'");
    }
    n++;
    tmr=setTimeout("beam("+n+")",spd);
  }
  else
  {
     clearTimeout(tmr);
     fade(4);
  }   


function fade(n)
{
  if(n>0) 
  {
    if(nav)eval("document.div"+n+".visibility='hidden'");
    else eval("div"+n+".style.visibility='hidden'"); 
    n--;
    tmr=setTimeout("fade("+n+")",spd);
  }
  else clearTimeout(tmr);


// -->
</SCRIPT>

الجمعة، 21 ديسمبر 2012

العاب نارية لخلفية الصفحة






http://img102.herosh.com/2011/08/28/363480199.gif


الوصف: خلفية رائعة عبارة عن العاب نارية.




طريقة التركيب: 
ضع الكود في منطقة الـ <body>




الكود:







ظلل وانسخ الكود




<layer name="a0" left=10 top=10 visibility=show bgcolor="#ffffff" clip="0,0,1,1"></layer>
<layer name="a1" left=10 top=10 visibility=show bgcolor="#fff000" clip="0,0,1,1"></layer>
<layer name="a2" left=10 top=10 visibility=show bgcolor="#ffa000" clip="0,0,1,1"></layer>
<layer name="a3" left=10 top=10 visibility=show bgcolor="#ff00ff" clip="0,0,1,1"></layer>
<layer name="a4" left=10 top=10 visibility=show bgcolor="#00ff00" clip="0,0,1,1"></layer>
<layer name="a5" left=10 top=10 visibility=show bgcolor="#ff00ff" clip="0,0,1,1"></layer>
<layer name="a6" left=10 top=10 visibility=show bgcolor="#ff0000" clip="0,0,1,1"></layer>
<layer name="a7" left=10 top=10 visibility=show bgcolor="#ffffff" clip="0,0,1,1"></layer>
<layer name="a8" left=10 top=10 visibility=show bgcolor="#fff000" clip="0,0,1,1"></layer>
<layer name="a9" left=10 top=10 visibility=show bgcolor="#ffa000" clip="0,0,1,1"></layer>
<layer name="a10" left=10 top=10 visibility=show bgcolor="#ff00ff" clip="0,0,1,1"></layer>
<layer name="a11" left=10 top=10 visibility=show bgcolor="#00ff00" clip="0,0,2,2"></layer>
<layer name="a12" left=10 top=10 visibility=show bgcolor="#0000ff" clip="0,0,2,2"></layer>
<layer name="a13" left=10 top=10 visibility=show bgcolor="#ff0000" clip="0,0,2,2"></layer>

<script language="JavaScript">

/*
Document firework script (By Kurt Gregg, kurt.grigg@virgin.net)
Modified granted to Dynamic Drive to feature script in archive
For full source and 100's more DHTML scripts, visit http://dynamicdrive.com
*/

if (document.all)
with(document){
write('<div id="starsDiv" style="position:absolute;top:0px;left:0px">')
write('<div style="position:relative;width:2px;height:2px;background:#ffffff;font-size:2px"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#fff000;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#ffa000;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#ff00ff;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#00ff00;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#0000ff;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#FF0000;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#ffffff;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#fff000;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#ffa000;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#ff00ff;font-size:1px"></div>')
write('<div style="position:relative;width:2px;height:2px;background:#ff00ff;font-size:2px"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#0000ff;font-size:1px"></div>')
write('<div style="position:relative;width:1px;height:1px;background:#FF0000;font-size:1px"></div>')
write('</div>')
}


var Clrs=new Array(9)
Clrs[0]='ff0000';
Clrs[1]='00ff00';
Clrs[2]='000aff';
Clrs[3]='ff00ff';
Clrs[4]='ffa500';
Clrs[5]='ffff00';
Clrs[6]='00ff00';
Clrs[7]='ffffff';
Clrs[8]='fffff0';
var sClrs=new Array(5)
sClrs[0]='ffa500';
sClrs[1]='55ff66';
sClrs[2]='AC9DFC';
sClrs[3]='fff000';
sClrs[4]='fffff0';
var yBase;
var xBase;
var step;
var currStep = 0;
var Xpos = 1;
var Ypos = 1;
var initialStarColor='ffa000';
var Mtop=250;
var Mleft=250;

function Fireworks() {
if (document.all)
{
yBase = window.document.body.offsetHeight/3;
xBase = window.document.body.offsetWidth/8;
}
else if (document.layers)
{
yBase = window.innerHeight/3;
xBase = window.innerWidth/8;
}
if (document.all)
{
step=5;
for ( i = 0 ; i < starsDiv.all.length ; i++ )
{
for (ai=0; ai < Clrs.length; ai++)
{
var c=Math.round(Math.random()*[ai]);
}
if (currStep < 90)
starsDiv.all[i].style.background=initialStarColor;
if (currStep > 90)
starsDiv.all[i].style.background=Clrs[c];
starsDiv.all[i].style.top = Mtop + yBase*Math.sin((currStep+i*5)/3)*Math.sin(550+currStep/100)
starsDiv.all[i].style.left = Mleft + yBase*Math.cos((currStep+i*5)/3)*Math.sin(550+currStep/100)
}
}
else if (document.layers)
{
step = 5;
for ( j = 0 ; j < 14 ; j++ ) //number of NS layers!
{
var templayer="a"+j
for (ai=0; ai < Clrs.length; ai++)
{
var c=Math.round(Math.random()*[ai]);
}
if (currStep < 90)
document.layers[templayer].bgColor=initialStarColor;
if (currStep > 90)
document.layers[templayer].bgColor=Clrs[c];
document.layers[templayer].top = Mtop + yBase*Math.sin((currStep+j*5)/3)*Math.sin(550+currStep/100)
document.layers[templayer].left = Mleft + yBase*Math.cos((currStep+j*5)/3)*Math.sin(550+currStep/100)
}
}
currStep+= step;
//window.status=currStep;
T=setTimeout("Fireworks()",5);
if (currStep==220)
{
currStep=-10;
for (n=0; n < sClrs.length; n++)
{
var k=Math.round(Math.random()*n);
}
initialStarColor=sClrs[k];
if (document.all)
{
Dtop=window.document.body.clientHeight-250;
Dleft=xBase*3.5;
Mtop=Math.round(Math.random()*Dtop);
Mleft=Math.round(Math.random()*Dleft);
document.all.starsDiv.style.top=Mtop+document.body.scrollTop;
document.all.starsDiv.style.left=Mleft+document.body.scrollLeft;
}
else if (document.layers)
{
Dleft=window.innerWidth-100;
Dtop=window.innerHeight-100;
Mtop=Math.round(Math.random()*Dtop+window.pageYOffset);
Mleft=Math.round(Math.random()*Dleft+window.pageXOffset);
document.layers[templayer].top=Mtop;
document.layers[templayer].left=Mleft;
}
if ((Mtop < 20) || (Mleft < 20))
{
Mtop+=90;
Mleft+=90;
}
}
}
if (document.all||document.layers)
Fireworks();

</script>



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



http://img102.herosh.com/2011/08/28/363480199.gif


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




طريقة التركيب: 
من خطوتين :



1- ضع الكود التالي بمنطقة الـ <head>



الكود:






ظلل وانسخ الكود






<script language="JavaScript">
hexa = new Array(16);
function degrade(sr, sg, sb, er, eg, eb, pas)
{
  for(var i = 0; i < 10; i++) hexa[i] = i;
  hexa[10]="a"; hexa[11]="b"; hexa[12]="c";
  hexa[13]="d"; hexa[14]="e"; hexa[15]="f";
  for(var i = 0; i <= pas; i++)
  {
   setbgColor(
   Math.floor(sr * ((pas-i)/pas) + er * (i/pas)),
   Math.floor(sg * ((pas-i)/pas) + eg * (i/pas)),
   Math.floor(sb * ((pas-i)/pas) + eb * (i/pas)));
  }
}
function hex(i)
{
  if (i < 0)
    return "00";
  else if (i > 255)
    return "ff";
  else return "" + hexa[Math.floor(i/16)] + hexa[i%16];
}
function setbgColor(r, g, b)
{
  var hr = hex(r), hg = hex(g), hb = hex(b);
  document.bgColor = "#"+hr+hg+hb;
}
</script>








2- ضع الكود التالي بمنطقة الـ <body>




الكود:






ظلل وانسخ الكود




<script language="JavaScript">
   degrade(0,0,0,255,150,100,255);
</script>

خلفية ماتريكس Matrix





الوصف:
خلفية للفيلم المعروف ماتريكس.




طريقة التركيب: 
ضع الكود بمنطقة الـ <body>



الكود:




<script language="JavaScript">
//للمزيد من الجافا سكريبت .. نرجو زيارة موقع إقلاع سوفت http://soft.vip600.com/
if (document.all){
Cols=10;
Cl=24;
Cs=100;
Ts=10;
Tc='#FF9933';
Tc1='#FFCC00';
MnS=5;
MxS=10;
I=Cs;
Sp=new Array();S=new Array();Y=new Array();
C=new Array();M=new Array();B=new Array();
RC=new Array();E=new Array();Tcc=new Array(0,1);
document.write("<div id='Container' style='position:absolute;top:0;left:-"+Cs+"'>");
document.write("<div style='position:relative'>");
for(i=0; i < Cols; i++){
S[i]=I+=Cs;
document.write("<div id='A' style='position:absolute;top:0;font-family:Arial;font-size:"
+Ts+"px;left:"+S[i]+";width:"+Ts+"px;height:0px;color:"+Tc+";visibility:hidden'></div>");
}
document.write("</div></div>");

for(j=0; j < Cols; j++){
RC[j]=1+Math.round(Math.random()*Cl); 
Y[j]=0;
Sp[j]=Math.round(MnS+Math.random()*MxS);
for(i=0; i < RC[j]; i++){
 B[i]='';
 C[i]=Math.round(Math.random()*1)+' ';
 M[j]=B[0]+=C[i];
 }
}
function Cycle(){
Container.style.top=window.document.body.scrollTop;
for (i=0; i < Cols; i++){
var r = Math.floor(Math.random()*Tcc.length);
E[i] = '<font color='+Tc1+'>'+Tcc[r]+'</font>';
Y[i]+=Sp[i];

if (Y[i] > window.document.body.clientHeight){
 for(i2=0; i2 < Cols; i2++){
 RC[i2]=1+Math.round(Math.random()*Cl); 
 for(i3=0; i3 < RC[i2]; i3++){
 B[i3]='';
 C[i3]=Math.round(Math.random()*1)+' ';
 C[Math.floor(Math.random()*i2)]=' '+' ';
 M[i]=B[0]+=C[i3];
 Y[i]=-Ts*M[i].length/1.5;
 A[i].style.visibility='visible';
 }
 Sp[i]=Math.round(MnS+Math.random()*MxS);
 }
}
A[i].style.top=Y[i];
A[i].innerHTML=M[i]+' '+E[i]+' ';
}
setTimeout('Cycle()',20)
}
Cycle();
}
// -->