Link to home
Start Free TrialLog in
Avatar of proy31
proy31

asked on

Image Gallery

I have a DHTML  / Javascript  image gallary. The way it works is that it loads 3 thumbnails, and mouse over results in the big image being displayed.

However, i want it to start with a preset image rather than having to trigger it by mousing over the thumbnail.

my code is as follows.

<script type="text/javascript">

var dynimages=new Array()
dynimages[0]=["/images/photo1.jpg", ""]
dynimages[1]=["/images/photo2.jpg", ""]
dynimages[2]=["/images/photo3.jpg", ""]


var preloadimg="yes"
var optlinktarget=""
var imgborderwidth=0
var filterstring="progid:DXImageTransform.Microsoft.Pixelate(MaxSquare=15,Duration=1)"

if (preloadimg=="yes"){
for (x=0; x<dynimages.length; x++){
var myimage=new Image()
myimage.src=dynimages[x][0]
}
}

function returnimgcode(theimg){
var imghtml=""
if (theimg[1]!="")
imghtml='<a href="'+theimg[1]+'" target="'+optlinktarget+'">'
imghtml+='<img src="'+theimg[0]+'" border="'+imgborderwidth+'">'
if (theimg[1]!="")
imghtml+='</a>'
return imghtml
}

function modifyimage(loadarea, imgindex){
if (document.getElementById){
var imgobj=document.getElementById(loadarea)
if (imgobj.filters && window.createPopup){
imgobj.style.filter=filterstring
imgobj.filters[0].Apply()
}
imgobj.innerHTML=returnimgcode(dynimages[imgindex])
if (imgobj.filters && window.createPopup)
imgobj.filters[0].Play()
return false
}
}

</script>
<link href="/core/css/style_main_guests.css" rel="stylesheet" type="text/css">
<table width="102%"  border="0" cellpadding="4" cellspacing="0">
    <tr>
        <td><img src="/images/mem_prof.gif" width="203" height="22"> </td>
        <td colspan="2">&nbsp;</td>
    </tr>
    <tr>
      <td width="203" valign="top"><div align="center">
        <table width="100%" border="0" cellpadding="4" cellspacing="0" bgcolor="#CCCCCC" class="thumbnailborder">
          <tr>
            <td colspan="3"><div align="center">
                <div id="dynloadarea" style="width:192px;height:212px"></div>
            </div></td>
          </tr>
          <tr>
            <td width="34%"><div align="right"><a href="#" onMouseOver="modifyimage('dynloadarea', 2)"><img border="0" src="/images/photo1.jpg" width="58" height="58"></a></div></td>
            <td width="33%"><div align="center"><a href="#" onMouseOver="modifyimage('dynloadarea', 1)"><img border="0" src="/images/photo2.jpg" width="58" height="58"></a></div></td>
            <td width="33%"><div align="left"><a href="#" onMouseOver="modifyimage('dynloadarea', 0)"><img border="0" src="/images/photo3.jpg" width="58" height="58"></a></div></td>
          </tr>
        </table>
      </div></td>

Thanks in advance
ASKER CERTIFIED SOLUTION
Avatar of apprenti
apprenti

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial