mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-24 02:27:19 +00:00
Added custom scroller animator
To remove a dependency on jQuery, and allow us to move to Zepto (which doesn't allow animation of scrollTop)
This commit is contained in:
parent
71ded42b60
commit
90677022e5
@ -12,6 +12,17 @@ var Tiddler = require("../Tiddler.js").Tiddler,
|
||||
Dependencies = require("../Dependencies.js").Dependencies,
|
||||
utils = require("../Utils.js");
|
||||
|
||||
function scrollToTop(duration) {
|
||||
if (duration < 0) {
|
||||
return;
|
||||
}
|
||||
var delta = (-document.body.scrollTop/duration) * 10;
|
||||
window.setTimeout(function() {
|
||||
document.body.scrollTop = document.body.scrollTop + delta;
|
||||
scrollToTop(duration-10);
|
||||
}, 10);
|
||||
}
|
||||
|
||||
exports.macro = {
|
||||
name: "story",
|
||||
params: {
|
||||
@ -29,9 +40,7 @@ exports.macro = {
|
||||
}
|
||||
story.tiddlers.unshift({title: event.navigateTo, template: template});
|
||||
this.store.addTiddler(new Tiddler(storyTiddler,{text: JSON.stringify(story)}));
|
||||
$("html,body").animate({
|
||||
scrollTop: 0
|
||||
}, 400);
|
||||
scrollToTop(400);
|
||||
event.stopPropagation();
|
||||
return false;
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user