Support Forums

Full Version: [javascript] DHTML image animation
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Credits and Source: http://jsmadeeasy.com/

Name: DHTML image animation
Description: Enhances your image presentation with a smooth dynamic motion (fade-in-fade-out). Great to bring your images alive! Loads much faster than any gif-animations. Easy to configure.
Snippet:


Insert into <HEAD>
Code:
<script language=javaScript>
<!-- Beginning of JavaScript -

sandra0 = new Image();
sandra0.src = "sandraaa0.jpg";

sandra1 = new Image();
sandra1.src = "sandraaa1.jpg";

sandra2 = new Image();
sandra2.src = "sandraaa2.jpg";

var i_strngth=1
var i_image=0

var imageurl = new Array()
imageurl[0] ="sandraaa0.jpg"
imageurl[1] ="sandraaa1.jpg"
imageurl[2] ="sandraaa2.jpg"


function showimage() {
    if(document.all) {
        if (i_strngth <=110) {
            testimage.innerHTML="<img style='filter:alpha(opacity="+i_strngth+")' src="+imageurl[i_image]+" border=0>";
            i_strngth=i_strngth+10
            var timer=setTimeout("showimage()",100)
        }
        else {
            clearTimeout(timer)
            var timer=setTimeout("hideimage()",1000)
        }
    }

    if(document.layers) {
            clearTimeout(timer)
            document.testimage.document.write("<img src="+imageurl[i_image]+" border=0>")
            document.close()
            i_image++
            if (i_image >= imageurl.length) {i_image=0}
            var timer=setTimeout("showimage()",2000)

    }
}


function hideimage() {
    if (i_strngth >=-10) {
        testimage.innerHTML="<img style='filter:alpha(opacity="+i_strngth+")' src="+imageurl[i_image]+" border=0>";
        i_strngth=i_strngth-10
        var timer=setTimeout("hideimage()",100)
    }
    else {
        clearTimeout(timer)
        i_image++
        if (i_image >= imageurl.length) {i_image=0}
        i_strngth=1
        var timer=setTimeout("showimage()",500)
    }
}


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

Insert into <BODY>
Code:
<body bgcolor="#FFFFFF" onLoad="showimage()">

<div id="mainbod" style="position:absolute;visibility:visible;top:50px;left:360px;">
</div>

<div id="testimage" style="position:absolute;visibility:visible;top:50px;left:40px"></div>

Thats It Smile
Thankyou for reading
Thanks for all the Snippets, Much Appreciated.
(11-06-2009, 07:19 AM)Fail Ninja Wrote: [ -> ]Thanks for all the Snippets, Much Appreciated.

I appreciated what you have said. Be happy always. Thanks Smile