Commit 26c29330 authored by wuqi's avatar wuqi

mouse wheel

parent b846cc11
...@@ -19,9 +19,8 @@ ...@@ -19,9 +19,8 @@
document.onreadystatechange = function () { document.onreadystatechange = function () {
if (document.readyState == "complete") { if (document.readyState == "complete") {
EPUBJS.filePath = "{{ url_for('static', filename='js/libs/') }}";//"js/libs/"; EPUBJS.filePath = "{{ url_for('static', filename='js/libs/') }}";
EPUBJS.cssPath = "{{ url_for('static', filename='css/') }}";//window.location.href.replace(window.location.hash, '').replace('read.html', '') + "css/"; EPUBJS.cssPath = "{{ url_for('static', filename='css/') }}";
// fileStorage.filePath = EPUBJS.filePath;
window.reader = ePubReader("{{ url_for('static', filename=bookid) }}/"); window.reader = ePubReader("{{ url_for('static', filename=bookid) }}/");
//keybind //keybind
...@@ -33,6 +32,21 @@ ...@@ -33,6 +32,21 @@
window.reader.book.nextPage(); window.reader.book.nextPage();
} }
}); });
//bind mouse
$(window).bind('DOMMouseScroll mousewheel', function(event) {
var delta = 0;
if (event.originalEvent.wheelDelta) {
delta = event.originalEvent.wheelDelta;
}else if (event.originalEvent.detail) {
delta = event.originalEvent.detail*-1;
}
if (delta >= 0) {
window.reader.book.prevPage();
}
else {
window.reader.book.nextPage();
}
});
} }
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment