cleanup: moved more CSS into the stylesheet
[phpfspot.git] / themes / default / templates / single_photo.tpl
index 62a2bf77f2ac9c17ff5976dfdfe661e858777db9..b6cdecbe7da1b6cdc4fd1a35dad5d971674c9237 100644 (file)
@@ -1,6 +1,6 @@
 <!-- Single photo -->
 <div class="header">
- <div style="text-align: left; float: left;">
+ <div class="subheader">
   <b>Photo {$image_name}</b><br />
   {if $photo_count > 0}
    {$photo_number} of {$photo_count}
    {/if}
   {/if}
  </div>
- <div style="text-align: right;">
+ <div class="textright"">
+  <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/32_play.png" /></a>
   {if $extern_link }
    <a href="{$extern_link}" title="Use this link to return to the current view"><img src="resources/link.png" /></a>
   {/if}
-  <a href="{$image_url_full}" target="_blank" onclick="click(this);">
+  <a href="{$image_url_full}" title="orig_image" target="_blank" onclick="click(this);">
    <img src="resources/original.png" alt="original resolution" />
   </a>
  </div>
 </div>
 
 <div>
- <div id="photo_details" style="float: right; margin-top: 20px; margin-right: 20px;">
+ <div id="photo_details">
    { if $ExifMadeWith }
    <u><img src="resources/camera.png" alt="camera icon" />&nbsp;Image taken with:</u><br />
    {$ExifMadeWith}<br />
    { /if}
  </div>
 
- <div style="text-align: left; margin-top: 20px; margin-left: 20px;">
+ <!-- the photo itself -->
+
+ <div class="photo">
  { if $next_url == "" }
   <a href="javascript:showPhotoIndex();" onclick="click(this);" name="photo">
  { else }
   <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>
 
- <div style="margin-left: 20px;">
+ <!-- navigation arrows -->
+
+ <div class="photonavigation">
   { if $previous_url == "" }
    <img src="resources/arrow_left_gray.png" alt="first photo reached" />
   { else }
   { /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 -->