diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2007-07-22 07:31:40 +0000 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2007-07-22 07:31:40 +0000 |
commit | a36bd6f4555cf410712611b5efcb82fdf5898551 (patch) | |
tree | c0a48ea6b1b8150000bbed758c23814b9b85a164 /themes/default/templates | |
parent | 168f6243a42314347bf385c9f79ccf0fdd7729c2 (diff) |
issue46, slideshow control (rew, pause/play/stop, fwd)
git-svn-id: file:///var/lib/svn/phpfspot/trunk@239 fa6a889d-dae6-447d-9e79-4ba9a3039384
Diffstat (limited to 'themes/default/templates')
-rw-r--r-- | themes/default/templates/slideshow.tpl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/themes/default/templates/slideshow.tpl b/themes/default/templates/slideshow.tpl index bba5cd2..3d0ab27 100644 --- a/themes/default/templates/slideshow.tpl +++ b/themes/default/templates/slideshow.tpl @@ -5,5 +5,11 @@ <img id="slide_img" alt="slideshow_img" /> </a> </div> + <div style="margin: 0 auto; padding: 10px;"> + <a href="javascript:prevSlide();" onclick="click(this);" title="slive to previous photo"><img id="rew_ico" src="resources/32_rew.png" /></a> + <a href="javascript:pauseSlideShow();" onclick="click(this);"><img id="pause_ico" src="resources/32_pause.png" /></a> + <a href="javascript:startSlideShow();" onclick="click(this);" title="stop and revert slideshow"><img id="stop_ico" src="resources/32_stop.png" /></a> + <a href="javascript:nextSlide();" onclick="click(this);" title="slide to next photo"><img id="fwd_ico" src="resources/32_fwd.png" /></a> + </div> </body> {include file="footer.tpl"} |