X-Git-Url: http://git.scottworley.com/picsort/blobdiff_plain/97c26a9cc9e8bda3e572eebeadf6a3beb8788e4b..9952a1a7aaa0eb9254668d70b69d845f5f2fd984:/picsorter.js diff --git a/picsorter.js b/picsorter.js index 8c4f167..a12b7e6 100644 --- a/picsorter.js +++ b/picsorter.js @@ -1,9 +1,26 @@ var exposure = 20; +var input_index = 0; +var zoom = "sm/"; -function setpic(pic) { - $("#pic")[0].src = exposure + "/" + pic; +function setpic() { + $("#pic").attr("src", zoom + exposure + "/" + files[input_index]); } -$( document ).ready(function() { - setpic(files[0]); +function toggle_zoom() { + if (zoom) { + zoom = ""; + } else { + zoom = "sm/"; + } +} + +$(function() { + setpic(); }); + +Mousetrap.bind('z', function() { toggle_zoom(); setpic(); }); +Mousetrap.bind('Z', function() { $("#pic").toggleClass("fit_view"); }); +Mousetrap.bind('n', function() { input_index ++; setpic(); }); +Mousetrap.bind('p', function() { input_index --; setpic(); }); +Mousetrap.bind('b', function() { exposure ++; setpic(); }); +Mousetrap.bind('d', function() { exposure --; setpic(); });