Tuesday, April 03, 2007

In the head, you'll need to paste the following code:

<script type="text/javascript" language="JavaScript">
    MyImages=new Array();
    MyImages[0]='034.jpg';
    MyImages[1]='038.jpg';
    MyImages[2]='acid2.jpg';
    MyImages[3]='boat.jpg';

    function newImage()
    {
        document.getElementById("mainImage").setAttribute("src", MyImages[Math.round(Math.random()*3)])
    }
</script>

You'll obviously need to change the file names to what ever files you want to load.

In the <body> tag, you'll also need to add onload="newImage()", so you get something like <body onload="newImage()">

Finally, you need to make sure that you have an image with an ID of "mainImage" on your page somewhere.  If you don't, you'll get JavaScript errors.

<img id="mainImage" />

posted on Tuesday, April 03, 2007 1:35:30 AM (SE Asia Standard Time, UTC+07:00)  #    Comments [0]
 Thursday, November 16, 2006

ไปอ่านวิธีการใช้ Java Script ใน ASP.Net 2.0 โดยเฉพาะวิธีการใช้ Page.ClientScript ซึ่งเปลี่ยนแปลงจาก ASP.Net 1.1

http://msdn2.microsoft.com/en-us/library/aa479390.aspx

posted on Thursday, November 16, 2006 5:45:16 PM (SE Asia Standard Time, UTC+07:00)  #    Comments [0]
 Wednesday, November 15, 2006

ให้ทำการ include JavaScript นี้ ในหน้า HTML หรือทำเป็น include file

จะสามารถแก้ไข Transparant PNG ใน IE 6.0 ได้

/*

Correctly handle PNG transparency in Win IE 5.5 & 6.
http://homepage.ntlworld.com/bobosola. Updated 18-Jan-2006.

Use in <HEAD> with DEFER keyword wrapped in conditional comments:
<!--[if lt IE 7]>
<script defer type="text/javascript" src="pngfix.js"></script>
<![endif]-->

*/


var arVersion = navigator.appVersion.split("MSIE")
var version = parseFloat(arVersion[1])

if ((version >= 5.5) && (document.body.filters))
{
for(var i=0; i<document.images.length; i++)
{
var img = document.images[i]
var imgName = img.src.toUpperCase()
if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
{
var imgID = (img.id) ? "id='" + img.id + "' " : ""
var imgClass = (img.className) ? "class='" + img.className + "' " : ""
var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' "
var imgStyle = "display:inline-block;" + img.style.cssText
if (img.align == "left") imgStyle = "float:left;" + imgStyle
if (img.align == "right") imgStyle = "float:right;" + imgStyle
if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle
var strNewHTML = "<span " + imgID + imgClass + imgTitle
+ " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"
+ "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
+ "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>"
img.outerHTML = strNewHTML
i = i-1
}
}
}

posted on Wednesday, November 15, 2006 9:35:25 AM (SE Asia Standard Time, UTC+07:00)  #    Comments [0]