use smaller action icons
[phpfspot.git] / themes / default / templates / single_photo.tpl
index 849ede5223a25d50793929e0b84f28068dce9ad6..04a35028c5b87ba62de84aebfed6b625f8dd1f62 100644 (file)
     Photos
    {/if}
    {if $description}
-    &nbsp;{$description}<br />
+    -&nbsp;{$description}<br />
    {/if}
   {/if}
  </div>
  <div style="text-align: right;">
-  <a href="javascript:startAutoBrowse();" title="auto browsing"><img id="autobrowse_ico" src="resources/32_play.png" /></a>
+  <a href="javascript:zoom(-10);" title="zoom_out" onclick="click(this);"><img src="resources/zoom-out.png" /></a>
+  <a href="javascript:zoom(0);" title="zoom_100" onclick="click(this);"><img src="resources/zoom-100.png" /></a>
+  <a href="javascript:zoom(10);" title="zoom_in" onclick="click(this);"><img src="resources/zoom-in.png" /></a>
+ <a href="javascript:startAutoBrowse();" title="auto browsing"><img id="autobrowse_ico" src="resources/16_play.png" />&nbsp;Auto-Browse</a>
   {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}
-  <a href="{$image_url_full}" target="_blank" onclick="click(this);">
-   <img src="resources/original.png" alt="original resolution" />
-  </a>
+  <a href="{$image_url_full}" title="orig_image" target="_blank" onclick="click(this);"><img src="resources/original.png" alt="original resolution" />&nbsp;Fullsize</a>
  </div>
 </div>
 
    { /if}
  </div>
 
+ <!-- the photo itself -->
+
  <div style="text-align: left; margin-top: 20px; margin-left: 20px;">
  { if $next_url == "" }
-  <a href="javascript:showPhotoIndex();" onclick="click(this);">
+  <a href="javascript:showPhotoIndex();" onclick="click(this);" name="photo">
  { else }
-  <a href="{$next_url}" onclick="click(this);" title="click for the next photo"
+  <a href="{$next_url}" onclick="click(this);" title="click for the next photo" name="photo">
  { /if }
-   <img src="{$image_url}" width="{$width}" height="{$height}" alt="{$image_filename}" />
+   <img src="{$image_url}" width="{$width}" height="{$height}" alt="{$image_filename}" name="photo" id="photo" />
   </a>
  </div>
 
+ <!-- navigation arrows -->
+
  <div style="margin-left: 20px;">
   { if $previous_url == "" }
    <img src="resources/arrow_left_gray.png" alt="first photo reached" />
@@ -80,7 +85,7 @@
     <img src="resources/arrow_left.png" alt="previous photo" />
    </a>
   { /if }
-   <a href="javascript:showPhotoIndex({$current});" onclick="click(this);" title="click to go back to the index">
+   <a href="javascript:showPhotoIndex({$current_page}, {$current_img});" onclick="click(this);" title="click to go back to the index">
     <img src="resources/arrow_up.png" alt="photo index" />
    </a>
   { if $next_url == "" }
   { /if}
  </div>
 </div>
+<script type="text/javascript">
+<!--
+   if(autobrowse && document.getElementById("autobrowse_ico"))
+      document.getElementById("autobrowse_ico").src = 'resources/32_pause.png';
+
+   /* lets preload to previous and the next image to speedup */
+   var image_next = new Image();
+   image_next.src = "phpfspot_img.php?idx={$next_img}&width={$photo_width}";
+   var image_prev = new Image();
+   image_prev.src = "phpfspot_img.php?idx={$prev_img}&width={$photo_width}";
+
+-->
+</script>
 <!-- /Single photo -->