gallery-view: support key events (up/down/left/right)
This commit is contained in:
parent
2d9214ac63
commit
163a4e699c
@ -72,6 +72,17 @@ $(function(){
|
|||||||
$("<a href='javascript:void(0)'><i class='fa fa-times'></i></div>")
|
$("<a href='javascript:void(0)'><i class='fa fa-times'></i></div>")
|
||||||
.click(close_gallery).appendTo(toolbar);
|
.click(close_gallery).appendTo(toolbar);
|
||||||
|
|
||||||
|
$('body').on('keydown.gview', function(e) {
|
||||||
|
if (e.which == 39 || e.which == 40) { // right or down arrow
|
||||||
|
gallery_setimage(+1);
|
||||||
|
e.preventDefault();
|
||||||
|
}
|
||||||
|
else if (e.which == 37 || e.which == 38) { // left or up arrow
|
||||||
|
gallery_setimage(-1);
|
||||||
|
e.preventDefault();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
handler.fadeIn(400);
|
handler.fadeIn(400);
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -103,6 +114,8 @@ $(function(){
|
|||||||
i.appendTo(active);
|
i.appendTo(active);
|
||||||
i.hide();
|
i.hide();
|
||||||
|
|
||||||
|
// Let's actually preload the next few images
|
||||||
|
|
||||||
i.on('load', function() {
|
i.on('load', function() {
|
||||||
i.css('left', 'calc(50% - '+i.width()+'px / 2)');
|
i.css('left', 'calc(50% - '+i.width()+'px / 2)');
|
||||||
i.css('top', 'calc(50% - '+i.height()+'px / 2)');
|
i.css('top', 'calc(50% - '+i.height()+'px / 2)');
|
||||||
@ -118,6 +131,8 @@ $(function(){
|
|||||||
|
|
||||||
gallery_opened = false;
|
gallery_opened = false;
|
||||||
|
|
||||||
|
$('body').off('keydown.gview');
|
||||||
|
|
||||||
handler.fadeOut(400, function() { handler.remove(); });
|
handler.fadeOut(400, function() { handler.remove(); });
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user