I am writing a scroll bar to replace scroll bar on the browser. I prefer to do it myself for the learning experience rather than use jQuery.
I got this code to work but I have a couple of issues:
- It will scroll down, but won't scroll up.
- When I click on the scroll bar element which is 100px long and 10px wide, the mouse pointer seems to snap to the top of the scroll bar element which looks unnatural for a scroll bar.
html:
<div id="portfolioScrollbar">
<div id="scrollbarTrack"><a id="scrolla" href="#scrollbar"></a></div>
<div id="pbody">
...all the text stuff...
</div>
</div>
EDIT- NEW CODE 1/27/2013:
Javscript:
function CloseContact() {
setTimeout (addClose, 2200 );
setTimeout (addContact, 2400 );
var foo = document.getElementById("scrolla");
foo.addEventListener( "mousedown", scrollObject.sbar1, false);
foo.addEventListener( "mouseup", removeAll, false);
foo.addEventListener( "mouseout", removeAll, false);
}
function removeAll(event) {
console.log("REMOVEaLL");
var foo = document.getElementById("scrolla");
foo.removeEventListener("mouseup", scrollObject.sbar2, false);
foo.removeEventListener("mouseout", scrollObject.sbar2, false);
foo.removeEventListener("mousemove", scrollObject.sbar2, false);
}
var scrollObject = function (event) {
var current = 0;
var move = null;
function sbar1(event) {
console.log("mousedown");
event.preventDefault();
var foo = document.getElementById("scrolla");
current = event.clientY;
foo.addEventListener( "mousemove", sbar2, false);
}
function sbar2(event) {
// console.log(event.clientY);
event.preventDefault();
var pbody = document.getElementById("pbody");
var scroll = document.getElementById("scrolla");
move = event.clientY - current;
if (move != 78644 ) {
console.log(move);
scroll.style.marginTop = move + "px";
//current = move;
}
}
return {
sbar1: sbar1,
sbar2: sbar2,
}
}();
