มาดูแบบที่ 13 กันนะครับ

รูปเปลี่ยนเมื่อเมาส์ไปโดน

 
 


 
ลองเอา Mouse ไปโดนสิครับ  ------------------------------------------------------        (คุณจะต้องมีรูป 3 รูปนี้นะครับ จะเปลี่ยนก็ได้ ต้องเป็น *.jpg) ------------------------------------------------------

<script language="JavaScript">  <!-- hide   // ok, we have a JavaScript browser    var browserOK = false;var pics;// -->  </script>  <script language="JavaScript1.1">  <!-- hide    // JavaScript 1.1 browser - oh yes!    browserOK = true;    pics = new Array();// -->  </script>  <script language="JavaScript">  <!-- hide  var objCount = 0; // number of (changing) images on web-page  function preload(name, first, second) {     // preload images and place them in an array    if (browserOK) {       pics[objCount] = new Array(3);      pics[objCount][0] = new Image();      pics[objCount][0].src = first;      pics[objCount][1] = new Image();      pics[objCount][1].src = second;      pics[objCount][2] = name;      objCount++;}}  function on(name){    if (browserOK) {       for (i = 0; i < objCount; i++) {        if (document.images[pics[i][2]] != null)          if (name != pics[i][2]) {             // set back all other pictures            document.images[pics[i][2]].src = pics[i][0].src;} else {             // show the second image because cursor moves across this image             document.images[pics[i][2]].src = pics[i][1].src;}}}}  function off(){    if (browserOK) {       for (i = 0; i < objCount; i++) {        // set back all pictures        if (document.images[pics[i][2]] != null)           document.images[pics[i][2]].src = pics[i][0].src;}}}  // preload images - you have to specify which images should be preloaded  // and which Image-object on the wep-page they belong to (this is the first  // argument). Change this part if you want to use different images (of course  // you have to change the body part of the document as well)  preload("link1", "network.jpg", "network2.jpg");// -->  </script>  <center><a href="http://geocities.datacellar.net/hollywood/land/6682" onMouseOver="on('link1')" onMouseOut="off()"><img SRC="start.jpg" NAME="link1" BORDER=0 ></a> <br><font face="MS Sans Serif"><font size=-2>ลองเอา Mouse ไปโดนสิครับ</font></font></center>

LINK จะเป็นชื่อที่เราต้องการ 

onMouseOver="window.status='WELCOME TO EASY TO GO'; return true;" onMouseOut="window.status='';"

 

Back main page        Back main Java

1