main.js 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. $(document).ready(function() {
  2. console.log("ready");
  3. var _current_pages = -1,
  4. _page_left_bg, _page_right_bg,
  5. _$page_left = $('#page-left'), _$page_right = $('#page-right'),
  6. _bgs_prefix = "images/pages/";
  7. // ____ _ __
  8. // / _/___ (_) /_
  9. // / // __ \/ / __/
  10. // _/ // / / / / /_
  11. // /___/_/ /_/_/\__/
  12. function init(){
  13. console.log("init", _$page_left);
  14. initkeyboard();
  15. changePages();
  16. };
  17. // ____
  18. // / __ \____ _____ ____ _____
  19. // / /_/ / __ `/ __ `/ _ \/ ___/
  20. // / ____/ /_/ / /_/ / __(__ )
  21. // /_/ \__,_/\__, /\___/____/
  22. // /____/
  23. function nextPages(){
  24. if(_current_pages < _PAGES.length-2){
  25. _current_pages+=2;
  26. changePages();
  27. }
  28. };
  29. function prevPages(){
  30. if(_current_pages > -1){
  31. _current_pages-=2;
  32. changePages();
  33. }
  34. };
  35. function changePages(){
  36. console.log("changePages");
  37. _page_left_bg = _bgs_prefix+_PAGES[_current_pages];
  38. _page_right_bg = _bgs_prefix+_PAGES[_current_pages+1];
  39. console.log(_page_left_bg+" | "+_page_right_bg);
  40. _$page_left.css({'background-image': "url("+_page_left_bg+")"});
  41. _$page_right.css({'background-image': "url("+_page_right_bg+")"});
  42. };
  43. // __ __ __ __
  44. // / //_/__ __ __/ /_ ____ ____ __________/ /
  45. // / ,< / _ \/ / / / __ \/ __ \/ __ `/ ___/ __ /
  46. // / /| / __/ /_/ / /_/ / /_/ / /_/ / / / /_/ /
  47. // /_/ |_\___/\__, /_.___/\____/\__,_/_/ \__,_/
  48. // /____/
  49. function initkeyboard(){
  50. keyboardJS.bind('right', function(event) {
  51. // console.log(event);
  52. nextPages();
  53. });
  54. keyboardJS.bind('left', function(event) {
  55. // console.log(event);
  56. prevPages();
  57. });
  58. };
  59. init();
  60. });