diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2007-07-06 16:53:10 +0000 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2007-07-06 16:53:10 +0000 |
commit | 8f3e27ca1aea300a47d35b9474c8f5fd588460da (patch) | |
tree | c6a9b4578f33852157168a5abee6cd9291e20d19 /templates | |
parent | 64f41bc1539ec51b909817df8b71094e7ceb7724 (diff) |
issue21, reordered photo index and added some nice mouseover effect
git-svn-id: file:///var/lib/svn/phpfspot/trunk@166 fa6a889d-dae6-447d-9e79-4ba9a3039384
Diffstat (limited to 'templates')
-rw-r--r-- | templates/photo_index.tpl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/templates/photo_index.tpl b/templates/photo_index.tpl index 87cd6aa..6c7af4a 100644 --- a/templates/photo_index.tpl +++ b/templates/photo_index.tpl @@ -1,4 +1,4 @@ -<!-- Image Matrix --> +<!-- Photo Index --> <table> <tr> <td colspan="3"> @@ -38,13 +38,13 @@ {section name="col" loop=$columns step=1} <td class="thumb"> {if $images[row][col] } - <div id="outter"> - <div id="inner"> - <a href="javascript:showImage({$images[row][col]});" id="{$images[row][col]}" name="image{$img_id[row][col]}"> + <div id="inner" onmouseover="setBackGrdColor(this, 'mouseover');" onmouseout="setBackGrdColor(this, 'mouseout');"> + <a href="javascript:showImage({$images[row][col]});" id="{$images[row][col]}" name="image{$img_id[row][col]}" class="thumblink"> <img class="thumb" id="{$images[row][col]}" src="phpfspot_img.php?idx={$images[row][col]}&width={$width}" alt="thumb_{$images[row][col]}" width="{$img_width[row][col]}" height="{$img_height[row][col]}" /> + <br /> + {$img_name[row][col]} </a> </div> - </div> {else} {/if} @@ -84,4 +84,4 @@ </td> </tr> </table> -<!-- /Image Matrix --> +<!-- /Photo Index --> |