اكواد جافا code example java
مكتبة اكواد الجافا احدث كود على تجدة في اكواد هذا الموقع قفله فتحه تاثير جافا مؤثرات فارة ماوس ساعة تقويم تنبيه حركات اطار كود مصدر
RSS
  • صفحة البداية
  • كود بريق يتبع مؤشر الفارة

  • ألوان تتبع الماوس

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

Previous Next

سبتمبر 13 2010

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

هذا كود بريق مع الماوس من النظافه القوية صار للكود بريق :)
دمتم بود ومسرة
بريق يتبع مؤشر الفارة
الوصف: بريق رائع وملون يتبع مؤشر الفارة.
اولاً: ضع الكود التالي بين علامتي الـ < ;head> و < ;head />

&lt;STYLE TYPE=&quot;text/css&quot;&gt;
&lt;!--

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;
}

//--&gt;
&lt;/STYLE&gt;
ثانياً: ضع الكود التالي بين علامتي الـ &lt; body &gt; و &lt; body /&gt;

&lt;table border=&quot;1&quot; cellpadding=&quot;2&quot; style=&quot;border-collapse: collapse&quot; bordercolor=&quot;#C0C0C0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;1
&lt;DIV ID=&quot;div1&quot; CLASS=&quot;s1&quot;&gt;*&lt;/DIV&gt;
&lt;DIV ID=&quot;div2&quot; CLASS=&quot;s2&quot;&gt;*&lt;/DIV&gt;
&lt;DIV ID=&quot;div3&quot; CLASS=&quot;s3&quot;&gt;*&lt;/DIV&gt;
&lt;DIV ID=&quot;div4&quot; CLASS=&quot;s4&quot;&gt;*&lt;/DIV&gt;

&lt;p align=&quot;center&quot;&gt;&lt;font face=&quot;arial&quot; size=&quot;-2&quot;&gt;This free script provided by&lt;/font&gt;&lt;br&gt;
&lt;font face=&quot;arial, helvetica&quot; size=&quot;-2&quot;&gt;&lt;a href=&quot;http://javascriptkit.com&quot;&gt;JavaScript
Kit&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;

&lt;SCRIPT LANGUAGE=&quot;javascript&quot; TYPE=&quot;text/javascript&quot;&gt;

/*
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://www.bdr130.net/
*/

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&lt;5)
  {
    if(nav)
    {
      eval(&quot;document.div&quot;+n+&quot;.top=&quot;+y);
      eval(&quot;document.div&quot;+n+&quot;.left=&quot;+x);
      eval(&quot;document.div&quot;+n+&quot;.visibility='visible'&quot;);
    }
    else
    {
      eval(&quot;div&quot;+n+&quot;.style.top=&quot;+y);
      eval(&quot;div&quot;+n+&quot;.style.left=&quot;+x);
      eval(&quot;div&quot;+n+&quot;.style.visibility='visible'&quot;);
    }
    n++;
    tmr=setTimeout(&quot;beam(&quot;+n+&quot;)&quot;,spd);
  }
  else
  {
     clearTimeout(tmr);
     fade(4);
  }
} 

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

// --&gt;
&lt;/SCRIPT&gt;

بواسطة admin • جافا النوافذ • 1 • الوسوم : صور, كود

سبتمبر 13 2010

ألوان تتبع الماوس

ألوان تتبع الماوس هذا كود الوان تلاحق الماوس اين ماذهب
حتى لو يروح السوق :)


padlinenumbers="false" smarttabs="true" tabsize="4" toolbar="true"
&lt;div id=&quot;starsDiv&quot; style=&quot;position: absolute; top: 0px; left: 0px;&quot;&gt;&lt;/div&gt;
&lt;script&gt;// &lt; ![CDATA[

  Begin
// Original:  freeware.de
// Web Site:  http://freeware.de
// MSIE Fix by:  Kurt Grigg (kurt.grigg@virgin.net)
/* Visit our site at http://java.bdr130.net/ for more code
* This notice must stay intact for use */

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

function xMoveHandler(evnt) {
Xpos = evnt.pageX;
Ypos = evnt.pageY;
}

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) {
document.onmousemove = MoveHandler;
}
else if (document.layers) {
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) {
for (i = 0 ; i &lt; starsDiv.all.length; i++) {
starsDiv.all[i].style.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);
starsDiv.all[i].style.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 &lt; 7; j++) { //7 is number of NS layers!
var templayer=&quot;a&quot; + 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(&quot;animateLogo()&quot;, 10);
}
animateLogo();
// End
// ]]&gt;&lt;/script&gt;

بواسطة admin • جافا النوافذ • 1

سبتمبر 13 2010

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

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

&lt;table border=&quot;1&quot; width=&quot;46%&quot; cellpadding=&quot;2&quot; style=&quot;border-collapse: collapse&quot; bordercolor=&quot;#C0C0C0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;1
&lt;p&gt;&lt;!--webbot bot=&quot;HTMLMarkup&quot; startspan --&gt;&lt;style type=&quot;text/css&quot;&gt;
.scroll {font-weight:bold; font-size:36; text-align: center; font-family: Verdana, Courier, Courier New;}
&lt;/style&gt;&lt;!--webbot bot=&quot;HTMLMarkup&quot; endspan --&gt;
&lt;!--webbot bot=&quot;HTMLMarkup&quot; startspan --&gt;&lt;script language=&quot;JavaScript1.2&quot;&gt;
/*
By Mark Baker
Showcased on Dynamicdrive.com
For full source code, visit http://vip4soft.com
*/
if (document.all)
document.write('&lt;script src=&quot;sinescroll.js&quot;&gt;&lt;\/script&gt;')
&lt;/script&gt;&lt;!--webbot bot=&quot;HTMLMarkup&quot; endspan --&gt;
&lt;!--webbot bot=&quot;HTMLMarkup&quot; startspan --&gt;&lt;style&gt;
.spanstyle {
	position:absolute;
	visibility:visible;
	top:-50px;
	font-size:10pt;
	font-family:Verdana;
      font-weight:bold;
	color:black;
}
&lt;/style&gt;
&lt;script&gt;
/*
Cursor Trailor Text- By Peter Gehrig (http://www.24fun.ch/)
Permission given to Dynamicdrive.com to feature script in it's archive.
For full source code, installation instructions, and 1000's more DHTML scripts,
visit http://vip4soft.com
*/
var x,y
var step=20
var flag=0
// ضع بالسطر التالي اسم موقعك
var message=&quot;vip4soft.com &quot;
message=message.split(&quot;&quot;)
var xpos=new Array()
for (i=0;i&lt;=message.length-1;i++) {
	xpos[i]=-50
}
var ypos=new Array()
for (i=0;i&lt;=message.length-1;i++) {
	ypos[i]=-50
}
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 &amp;&amp; document.all) {
    	for (i=message.length-1; i&gt;=1; i--) {
   			xpos[i]=xpos[i-1]+step
			ypos[i]=ypos[i-1]
    	}
		xpos[0]=x+step
		ypos[0]=y

		for (i=0; i&lt;message.length-1; i++) {
    		var thisspan = eval(&quot;span&quot;+(i)+&quot;.style&quot;)
    		thisspan.posLeft=xpos[i]
			thisspan.posTop=ypos[i]
    	}
	}

	else if (flag==1 &amp;&amp; document.layers) {
    	for (i=message.length-1; i&gt;=1; i--) {
   			xpos[i]=xpos[i-1]+step
			ypos[i]=ypos[i-1]
    	}
		xpos[0]=x+step
		ypos[0]=y

		for (i=0; i&lt;message.length-1; i++) {
    		var thisspan = eval(&quot;document.span&quot;+i)
    		thisspan.left=xpos[i]
			thisspan.top=ypos[i]
    	}
	}
		var timer=setTimeout(&quot;makesnake()&quot;,30)
}
&lt;/script&gt;&lt;!--webbot bot=&quot;HTMLMarkup&quot; endspan --&gt;
&lt;!--webbot bot=&quot;HTMLMarkup&quot; startspan --&gt;&lt;script&gt;
&lt;!-- Beginning of JavaScript -
for (i=0;i&lt;=message.length-1;i++) {
    document.write(&quot;&lt;span id='span&quot;+i+&quot;' class='spanstyle'&gt;&quot;)
	document.write(message[i])
    document.write(&quot;&lt;/span&gt;&quot;)
}
if (document.layers){
	document.captureEvents(Event.MOUSEMOVE);
}
document.onmousemove = handlerMM;
// - End of JavaScript - --&gt;
&lt;/script&gt;&lt;!--webbot bot=&quot;HTMLMarkup&quot; endspan --&gt;
&lt;!--webbot bot=&quot;HTMLMarkup&quot; startspan --&gt;
&lt;body onLoad=&quot;makesnake()&quot; style=&quot;width:100%;overflow-x:hidden;overflow-y:scroll&quot;&gt;
&lt;/p&gt;

بواسطة admin • جافا النوافذ • 1 • الوسوم : صور, كود

اقسام الجافا

  • ACTION
  • اجنبية
  • اطارات وحدود
  • اكواد ادوات للمواقع
  • اكواد الصوت
  • العاب بالجافا
  • القوائم
  • جافا النوافذ
  • رسائل وتنبيهات
  • روابط وازرار
  • ساعات + تواريخ + تقاويم
  • مؤثرات الصور
  • مؤثرات الفارة الماوس mause
  • مؤثرات على النصوص
  • مؤثرات واكواد منوعه
  • محركات بحث + اشرطه اخبار
  • معلومات للزوار
  • موثرات الصفحات
  • موثرات الوان

احدث و اخر المواضيع

  • لعبة سرعة البديهة
  • لعبة المربعات X , O
  • لعبة الحب
  • لعبة تعلم الانجليزية HANG MAN
  • لعبة الثعبان
  • لعبة اجمع النقاط
  • لعبة الأرقام
  • لعبة المربعات Toggler
  • كود آخر الأخبار من موقع مفكرة الاسلام
  • كود عداد زوار – سهل التركيب

اقوى كلمات مفيدة من الجافا

Agent OBJECT SCRIPT الساحر ساحر شايب صور كود ماوس مجك
© اكواد جافا code example java 2012Powered by WordPress • Themes