DIR : /home/kozerus/public_html/piwigo/themes/modus/js/menuh.js
/home/kozerus/public_html/piwigo/themes/modus/js
$("#menuSwitcher").click( function() {
var mb = $("#menubar");
if (mb.is(":visible")) {
mb.css("display", ""); // remove inline css in case browser resizes larger
}
else {
$(".categoryActions,.actionButtons,.switchBox").css("display", "");
mb.css("top", $(this).position().top + $(this).outerHeight(true))
.css("display", "block");
}
});
$("#menubar DT").click( function() {
var $this = $(this);
if ($this.css("display") != "block")
return; // menu is horizontal
var dd = $this.siblings("DD");
if (dd.length) {
if (dd.is(":visible"))
dd.css("display", ""); // remove inline css in case browser resizes larger
else
dd.css("display", "block");
}
});
//
koh5_pano
Drag mouse to navigate.
Navigation
- Left/Right Mouse drag: Changes camera heading.
- Up/Sown Mouse drag: Changes camera pitch.
- Scroll wheel: Changes camera field of view.
- I-Key: Displays Info panel with canvas size, image size and FPS.
17.Aug.2010, Martin Wengenmayer