Difference between revisions of "Template:Freiburg/wiki content start"
Line 41: | Line 41: | ||
// button disappears on top of the page // | // button disappears on top of the page // | ||
− | if (y < | + | if (y < 60) { |
console.log('lower'); | console.log('lower'); | ||
− | $blob.css({"top": | + | $blob.css({"top": $window.height() + 30, "right": 30}); // = 30 px under bottom |
} | } | ||
// button appears in the middle // | // button appears in the middle // | ||
− | if ($window.scrollTop() > | + | if ($window.scrollTop() > 60 ) { |
if ($window.scrollTop() <($pageheight-100)) { | if ($window.scrollTop() <($pageheight-100)) { | ||
console.log('middle'); | console.log('middle'); | ||
− | $blob.css({"top": y - 30, "right": 30}); // = 30 px from bottom | + | $blob.css({"top": y + $pageheight - 30, "right": 30}); // = 30 px from bottom |
} | } | ||
} | } |
Revision as of 05:52, 8 September 2015