|
I have made much progress since I last posted, but have reached an impasse. Here is what I am aiming for, and here is the code. I wonder if someone might be able to make the fix it needs?
1. I want one main image, which, when clicked on, becomes its ORIGINAL size
(the way Auctiva had it). This can be gigantic. I do not want it to be full
sized in the listing, it is supposed to supersize only when clicked on. I've
got it working so that it will do this, now.
2. I want smaller images underneath the main image. I want them to trade
places with the main image when clicked on, and appear in the "large"
picture area. I've got it working now so that it will do this.
3. THEN, I want these other images to ALSO supersize when clicked on, after
they are in the main picture area. I do NOT have this working yet.
The code has steps 1 and 2 working correctly, but I can't
get step 3. It keeps sending ALL of the other pictures to the first
picture's supersize version.
Here's the code:
<center>
<a href="http://img.inkfrog.com/click_enlarge1.php?image={imagename1}&username={bp _username}{aid}"> <img src="{thumburl1_580}" hspace="4" vspace="4" name=picture border="0" alt="Click to enlarge"></a>
<br />
<A onclick="document.picture.src='{thumburl1_580}'; return false;" href="#" ;">
<img src="{thumburl1_100}" hspace="1" vspace="4" border="1"></a>
<A onclick="document.picture.src='{thumburl2_580}'; return false;" href="#" ;">
<img src="{thumburl2_100}" hspace="1" vspace="4" border="1"></a>
<A onclick="document.picture.src='{thumburl3_580}'; return false;" href="#" ;">
<img src="{thumburl3_100}" hspace="1" vspace="4" border="1"></a>
<A onclick="document.picture.src='{thumburl4_580}'; return false;" href="#" ;">
<img src="{thumburl4_100}" hspace="1" vspace="4" border="1"></a><br>
<A onclick="document.picture.src='{thumburl5_580}'; return false;" href="#" ;">
<img src="{thumburl5_100}" hspace="1" vspace="4" border="1"></a>
<A onclick="document.picture.src='{thumburl6_580}'; return false;" href="#" ;">
<img src="{thumburl6_100}" hspace="1" vspace="4" border="1"></a>
<A onclick="document.picture.src='{thumburl7_580}'; return false;" href="#" ;">
<img src="{thumburl7_100}" hspace="1" vspace="4" border="1"></a>
<A onclick="document.picture.src='{thumburl8_580}'; return false;" href="#" ;">
<img src="{thumburl8_100}" hspace="1" vspace="4" border="1"></a><br>
<A onclick="document.picture.src='{thumburl9_580}'; return false;" href="#" ;">
<img src="{thumburl9_100}" hspace="1" vspace="4" border="1"></a>
<A onclick="document.picture.src='{thumburl10_580}'; return false;" href="#" ;">
<img src="{thumburl10_100}" hspace="1" vspace="4" border="1"></a>
<A onclick="document.picture.src='{thumburl11_580}'; return false;" href="#" ;">
<img src="{thumburl11_100}" hspace="1" vspace="4" border="1"></a>
<A onclick="document.picture.src='{thumburl12_580}'; return false;" href="#" ;">
<img src="{thumburl12_100}" hspace="1" vspace="4" border="1"></a><br>
<A onclick="document.picture.src='{thumburl13_580}'; return false;" href="#" ;">
<img src="{thumburl13_100}" hspace="1" vspace="4" border="1"></a>
<A onclick="document.picture.src='{thumburl14_580}'; return false;" href="#" ;">
<img src="{thumburl14_100}" hspace="1" vspace="4" border="1"></a>
<A onclick="document.picture.src='{thumburl15_580}'; return false;" href="#" ;">
<img src="{thumburl15_100}" hspace="1" vspace="4" border="1"></a>
<A onclick="document.picture.src='{thumburl16_580}'; return false;" href="#" ;">
<img src="{thumburl16_100}" hspace="1" vspace="4" border="1"></a>
</center>
|