Hi all,
I'm struggling with condensing code into something that is much more manageable. The basic idea is the following:
I have an exapnding side panel of image thumbnails that moves in and out with mouseover. When a thumbnail is clicked - it then displays in a main div. Once it is in the main div, I then can manipulate it in several ways: using its image map to provide more content, move the image to another location with shrinking, providing the main div with screen real-estate that can be used for other things (as yet to be determined - but based on the needs of the end user).
The code is working as is, however the next step is to link it to the database using either java server pages or ajax.
Hence what I need to do is to combine parameters such that when we start pulling the images from the database, most of the code is focused on getting the correct images and content rather than generating bloated html. In other words is there a good way to condense the onclick activities - displaying the large image (in formImage)and the formCaption into a single function that can then be called with parameters that change depending upon which thumbnail is clicked?
Here's what I have so far...(only a few of each image - there are up to 20.)
and the html (I've purposely left out the CSS to focus on the dynamic aspects.)
Thanks a million,
George
I'm struggling with condensing code into something that is much more manageable. The basic idea is the following:
I have an exapnding side panel of image thumbnails that moves in and out with mouseover. When a thumbnail is clicked - it then displays in a main div. Once it is in the main div, I then can manipulate it in several ways: using its image map to provide more content, move the image to another location with shrinking, providing the main div with screen real-estate that can be used for other things (as yet to be determined - but based on the needs of the end user).
The code is working as is, however the next step is to link it to the database using either java server pages or ajax.
Hence what I need to do is to combine parameters such that when we start pulling the images from the database, most of the code is focused on getting the correct images and content rather than generating bloated html. In other words is there a good way to condense the onclick activities - displaying the large image (in formImage)and the formCaption into a single function that can then be called with parameters that change depending upon which thumbnail is clicked?
Here's what I have so far...(only a few of each image - there are up to 20.)
Code:
function shrinkIt() {
document.getElementById("formImage").style.width = "200px";
}
function enlargeIt() {
document.getElementById("formImage").style.width = "60%";
}
function moveitTo(obj, x, y) {
obj.style.left = x +"%";
obj.style.top = y +"px";
}
Code:
<div id= "main">
<p id="formCaption">here's where the caption will go</p>
<img id = "formImage" src="" alt = "picture of form1"></img>
</div>
<ul>
<li><a href="javascript:moveitTo(document.getElementById('formImage'), 50,-200); shrinkIt()">Move and shrink (top)</a></li>
<li><a href="javascript:moveitTo(document.getElementById('formImage'), 0, 0); enlargeIt()">Return to original position (left)</a></li>
</ul>
<ul>
<li><a><img src="SF600_16.png" width="100%" alt="SF600" onClick = "document.getElementById('formImage').src = 'SF600_16.png'; document.getElementById('formCaption').innerHTML ='SF600'" /><caption> SF600</caption></a></li>
<li><a><img src="SF88_16.png" width = "100%" alt="SF88" onClick = "document.getElementById('formImage').src = 'SF88_16.png'; document.getElementById('formCaption').innerHTML = 'SF88'" /><caption> SF88</caption></a></li>
</ul>
Thanks a million,
George