Skip to content

Instantly share code, notes, and snippets.

@dzenkovich
Created June 19, 2013 11:38
Show Gist options
  • Save dzenkovich/5813630 to your computer and use it in GitHub Desktop.
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
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);
};
@undless
Copy link

undless commented Aug 13, 2013

@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);
        }
    });

@lo-th
Copy link

lo-th commented May 5, 2014

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;"

@treefitty
Copy link

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