Created
June 19, 2013 11:38
-
-
Save dzenkovich/5813630 to your computer and use it in GitHub Desktop.
Very simple upgrade to very simple basic 'slider' bar in JavaScript and CSS :) originating from this gist https://gist.github.com/kosso/1118840
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Slider = function(options){ | |
var bar, | |
slider, | |
toggle, | |
percent, | |
that = this; | |
function _init(options){ | |
_construct(); | |
if(options.container && options.container.appendChild){ | |
options.container.appendChild(bar); | |
} | |
else{ | |
document.getElementById(options.container).appendChild(bar); | |
} | |
if(options.value){ | |
that.value(options.value); | |
} | |
}; | |
function _construct(){ | |
bar = document.createElement('div'); | |
bar.className = 'slider-bar'; | |
slider = document.createElement('div'); | |
slider.className = 'slider-slider'; | |
bar.appendChild(slider); | |
toggle = document.createElement('div'); | |
toggle.className = 'slider-toggle'; | |
slider.appendChild(toggle); | |
bar.addEventListener('mousedown', _startSlide, false); | |
}; | |
function _startSlide(e){ | |
var x = e.offsetX==undefined?e.layerX:e.offsetX; | |
percent = (x / bar.offsetWidth).toFixed(2); | |
slider.style.width = (percent * 100) + '%'; | |
document.addEventListener('mousemove', _moveSlide, false); | |
document.addEventListener('mouseup', _stopSlide, false); | |
_onChange(); | |
}; | |
function _moveSlide(e){ | |
if(e.target == bar){ | |
var x = e.offsetX==undefined?e.layerX:e.offsetX; | |
percent = (x / bar.offsetWidth).toFixed(2); | |
slider.style.width = (percent * 100) + '%'; | |
_onChange(); | |
} | |
}; | |
function _stopSlide(e){ | |
document.removeEventListener('mousemove', _moveSlide, false); | |
document.removeEventListener('mousemove', _stopSlide, false); | |
}; | |
function _onChange(){ | |
if(typeof options.onChange == 'function'){ | |
options.onChange(percent); | |
} | |
}; | |
this.value = function(value){ | |
if(value == null){ | |
return percent; | |
} | |
else{ | |
percent = (value > 1 ? 1 : (value < 0 ? 0 : value)); | |
slider.style.width = (percent * 100) + '%'; | |
_onChange(); | |
} | |
}; | |
_init(options); | |
}; |
@DRudel you have to give the id of your container in the call :
bar = new Slider({
container: bar, // not "container:container"
value: 0.7,
onChange: function(value){
console.log(value);
}
});
you can add style in javascript
toggle.style.cssText = "position:absolute;background-color: #eee; width: 4px; height: 150%; top: -40%; right: -3px;border:1px solid #444;"
thanks for the gist!
possibly a bug in _stopSlide not removing events correctly, I've used:
function _stopSlide(e){
document.removeEventListener('mousemove', _moveSlide, false);
document.removeEventListener('mouseup', _stopSlide, false);
};
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi there, I'm very new to JScript, and I am trying to get this to work on JSFiddle, but when I try to set it up, nothing happens. Can you please take a look at http://jsfiddle.net/T3TE4/4/ and tell me what I am doing wrong?