use smaller action icons
[phpfspot.git] / themes / default / templates / photo_index.tpl
index bf235d3a0152487913e3272651300fc87a3dff06..4a30a467eb36a009844e73303863f19a32962476 100644 (file)
@@ -1,4 +1,7 @@
 <!-- Photo Index -->
+
+<!-- Header - displays count of matched photos and some link's -->
+
 <div class="header">
  <div style="float: left;">
   <b>Photo Index</b>
  </div>
  <div style="text-align: right">
   {if $slideshow_link }
-   <a href="{$slideshow_link}" title="Slideshow" target="_blank"><img src="resources/slideshow.png" /></a>
+   <a href="{$slideshow_link}" title="Slideshow" target="_blank"><img src="resources/slideshow.png" />&nbsp;Slideshow</a>
   {/if}
   {if $extern_link }
-   <a href="{$extern_link}" title="Use this link to return to the current view"><img src="resources/link.png" /></a>
+   <a href="{$extern_link}" title="Use this link to return to the current view"><img src="resources/link.png" />&nbsp;External Link</a>
   {/if} 
   {if $export_link }
-   <a href="{$export_link}" target="_blank" title="this will open a new browser window where you can export this page in several formats"><img src="resources/export.png" /></a>
+   <a href="{$export_link}" target="_blank" title="this will open a new browser window where you can export this page in several formats"><img src="resources/export.png" />&nbsp;Export</a>
   {/if}
   {if $rss_link }
-   <a href="{$rss_link}" target="_blank" title="RSS feed"><img src="resources/rss.png" /></a>
+   <a href="{$rss_link}" target="_blank" title="RSS feed"><img src="resources/rss.png" />&nbsp;RSS-Feed</a>
   {/if}
  </div>
 </div>
 
+<!-- if result of a tag-search is displayed, show the selected tags
+     with some small pictures in a bar. -->
+
+{ if $tag_result }
+<div id="whiteline" /></div>
+<div class="subheader">
+ <div style="display: table-cell; vertical-align: middle;">
+ Tags:
+ </div>
+ { $selected_tags }
+</div>
+{ /if }
+
+<!-- the photo matrix itself -->
+
 <div id="index">
 
  {section name="thumb" loop=$thumbs step=1}
 <br class="clearboth" />
 <script type="text/javascript" language="JavaScript">
 <!--
+   /*** image preloading ***/
    { counter start=-1 }
 
    var current;
    var image_urls = new Array();
+   var last_thumb;
 
    {section name="thumb" loop=$thumbs step=1}
       {if $images[thumb] }
          image_urls[{counter}] = 'phpfspot_img.php?idx={$images[thumb]}&width={$width}';
+         last_thumb = {$images[thumb]};
       {/if}
    {/section}
 
    preloadPhotos(image_urls);
+
+   // auto-scroll
+   //
+   // if browser is to far down the page, that he can't see the photo at all
+   // scroll it up so that at least the last photo becomes visisble.
+   { literal }
+
+   var ywnd = 0;
+   var yimg = 0;
+   // check where we are with the browser
+   if (window.pageYOffset) {
+      ywnd = window.pageYOffset;
+   } else if (document.body && document.body.scrollTop) {
+      ywnd = document.body.scrollTop;
+   }
+   // check the y-pos of the last thumbnail
+   if(thumbimg = document.getElementById('thumbimg' + last_thumb)) {
+      yimg = findPos(thumbimg,'top');
+   }
+   // if the browser-window is scrolled further then the last_thumb, scroll back
+   if(ywnd > yimg) {
+      window.scrollTo(0, yimg-100);
+   }
+
+   { /literal }
+   // auto-scroll
+
 -->
 </script>
 <!-- /Photo Index -->