>ada yg bisa bantuin nggak...saya mau buat banner yg terdiri dari 2 atau
>lebih images yg cycling setiap waktu tertentu...tapi pengennya setiap image
>yg cycling itu punya ling yg beda-beda...bagaimana ya..?? saya pernah tau
>kalo yg demikian itu bisa pake applet...tapi dimana nyarinya yah...??
please
>dong...tolong...
>
>tengkiu banget,
>-kOws-


Saya lihat di http://www.w3.org/markup/guide/advanced.html

Banner Ads

If your website is has several sponsors, then you can use an image link that
cycles through each of the sponsors in turn. The first step is to create an
image for each of your sponsors. All the images should have the same size.
The corresponding URLs for the images and for the websites are then placed
into the arrays named adImages and adURLs defined at the start of the
script. The img element for the link should be initialized to the first
image in the array:

<script type="text/javascript">
if (document.images)
{
    adImages = new Array("hosts/mit.gif",
                "hosts/inria.gif", "hosts/keio.gif");
    adURLs = new Array("www.lcs.mit.edu",
                "www.inria.fr", "www.keio.ac.jp");
    thisAd = 0;
}

function cycleAds()
{
    if (document.images)
    {
        if (document.addBanner.complete)
        {
            if (++thisAd == adImages.length)
                thisAd = 0;

            document.adBanner.src = adImages[thisAd];
        }
    }

    // change to next sponsor every 3 seconds
    setTimeout("cycleAds()", 3000);
}

function gotoAd()
{
    document.location.href = "http://" + adURLs[thisAd];
}
</script>

...

<a href="javascript:gotoAd()"><img name="adBanner"
src="hosts/mit.gif" border="0" alt="Our sponsors"></a>

semoga berhasil.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
"How beautiful this world will be,
if we can love people like we love ours ;->"


- Perbesar peluang bisnis Anda dengan www.jatimmall.com
To unsubscribe, e-mail : [EMAIL PROTECTED]
To subscribe, e-mail   : [EMAIL PROTECTED]
Netika BerInternet     : [EMAIL PROTECTED]
Arsip di http://www.mail-archive.com/[email protected]/

Kirim email ke