1
0
This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-contrib/views/hoverView.html.php
Fredrik Erlandsson 77c42a1e5d Limit of n:o thumbs to show when skimming.
Support for exif data from detailview (no longer links to the photo page), breaks the view count.
2011-06-16 10:16:37 +02:00

24 lines
1.5 KiB
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<div id="detailView" onmousemove="showHoverView();">
<div class="overlay"> </div>
<div class="content">
<div class="imageContainer">
<div id="backToAlbumLink" class="dark_theme">
<button id="backToAlbumButton" class="large push large-with-push" title="Back to Album" onclick="hideDetailView();"> <div class="outer"> <div id="backToAlbumButtonLabel" class="label">Back to Album</div> </div> </button>
</div>
<div id="detailImageView" class=""> <img style="visibility: visible;" src="" alt="" id="img_detail"/> </div>
<div class="titleLabel" id="imageTitleLabel" style="bottom: width: 624px;"></div>
</div>
<div id="hoverView" class="" onmouseover="hovering=true;" onmouseout="hovering=false;">
<div id="hoverViewMenu">
<div id="download_detail" title="Download this photo" class="download_detail" onclick="document.location=slideshowImages[currentImg][5]"> </div>
<div id="prev_detail" title="(P)revious" class="prev_detail"> </div>
<div id="pause_detail" style="display: none;" title="Pause" class="pause_detail" onclick="togglePlayPause();"> </div>
<div id="play_detail" style="display: none;" title="Play" class="play_detail" onclick="togglePlayPause();"> </div>
<div id="next_detail" title="(N)ext" class="next_detail"> </div>
<div id="info_detail" title="Show more information about this photo" class="info_detail g-dialog-link"> </div>
</div>
</div>
</div>
</div>