nice bubble preview in photo index view
[phpfspot.git] / templates / photo_index.tpl
index 7f3af463864b9a14723a83dcae17469af3464d44..1647f5a9040d8170df823f83092a6aacd7284f98 100644 (file)
@@ -1,20 +1,46 @@
 <!-- Image Matrix -->
 <table>
  <tr>
-  <td colspan="{$columns}">
-   {$count} images have been found for the selected tags
+  <td class="index_header">
+   <b>Photo Index</b><br />
+   {if $count == 1}
+      {$count} image has been found for the selected tags
+   {else}
+      {$count} images have been found for the selected tags
+   {/if}
   </td>
  </tr>
-{section name="row" loop=$rows step=1}
  <tr>
- {section name="col" loop=$columns step=1}
   <td>
-   <a href="javascript:showImage({$images[row][col]});">
-    <img src="phpfspot_img.php?idx={$images[row][col]}&amp;width={$width}" />
-   </a>
+   <div id="matrix">
+   <table>
+   {section name="row" loop=$rows step=1}
+    <tr>
+    {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]}" class="bubble">
+        <img class="thumb" src="phpfspot_img.php?idx={$images[row][col]}&amp;width={$width}" />
+       </a>
+      </div>
+      </div>
+      {else}
+       &nbsp;
+      {/if}
+     </td>
+    {/section}
+    </tr>
+   {/section} 
+   </table>
+   </div>
   </td>
- {/section}
  </tr>
-{/section} 
 </table>
+<script type="text/javascript">
+<!--
+   bindBubbles();
+-->
+</script>
 <!-- /Image Matrix -->