-
Notifications
You must be signed in to change notification settings - Fork 355
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Multi-thumb Slider Examples: Initial Implementation (Pull #438)
Initial implementation of examples for issue #124.
- Loading branch information
Showing
13 changed files
with
566 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* CSS Document */ | ||
|
||
div.aria-widget-slider { | ||
clear: both; | ||
padding-top: 0.5em; | ||
padding-bottom: 1em; | ||
} | ||
|
||
|
||
div.rail-label { | ||
padding-right: 0.5em; | ||
text-align: right; | ||
float: left; | ||
width: 4em; | ||
position: relative; | ||
top: -0.5em; | ||
} | ||
|
||
div.rail-label.max { | ||
padding-left: 0.5em; | ||
text-align: left; | ||
} | ||
|
||
div.aria-widget-slider .rail { | ||
background-color: #eee; | ||
border: 1px solid #888; | ||
position: relative; | ||
height: 4px; | ||
float: left; | ||
} | ||
|
||
div.aria-widget-slider img[role="slider"] { | ||
position: absolute; | ||
padding: 0; | ||
margin: 0; | ||
top: -10px; | ||
} | ||
|
||
div.aria-widget-slider img[role="slider"].focus, | ||
div.aria-widget-slider img[role="slider"]:hover { | ||
outline-color: rgb(140, 203, 242); | ||
outline-style: solid; | ||
outline-width: 2px; | ||
outline-offset: 2px; | ||
} | ||
|
||
div.aria-widget-slider .rail.focus { | ||
background-color: #aaa; | ||
} | ||
|
||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,241 @@ | ||
/* | ||
* File: slider.js | ||
* | ||
* Desc: Slider widget that implements ARIA Authoring Practices | ||
* | ||
* Author(s): Jon Gunderson, Nicholas Hoyt, Brian Loh, and Mark McCarthy | ||
*/ | ||
|
||
// Create Slider that contains value, valuemin, valuemax, and valuenow | ||
var Slider = function (domNode) { | ||
|
||
this.domNode = domNode; | ||
this.railDomNode = domNode.parentNode; | ||
|
||
this.labelDomNode = false; | ||
this.minDomNode = false; | ||
this.maxDomNode = false; | ||
|
||
this.valueNow = 50; | ||
|
||
this.railMin = 0; | ||
this.railMax = 100; | ||
this.railWidth = 0; | ||
this.railBorderWidth = 1; | ||
|
||
this.thumbWidth = 20; | ||
this.thumbHeight = 24; | ||
|
||
this.keyCode = Object.freeze({ | ||
'left': 37, | ||
'up': 38, | ||
'right': 39, | ||
'down': 40, | ||
'pageUp': 33, | ||
'pageDown': 34, | ||
'end': 35, | ||
'home': 36 | ||
}); | ||
}; | ||
|
||
// Initialize slider | ||
Slider.prototype.init = function () { | ||
|
||
if (this.domNode.previousElementSibling) { | ||
this.minDomNode = this.domNode.previousElementSibling; | ||
this.railMin = parseInt((this.minDomNode.getAttribute('aria-valuemin'))); | ||
} | ||
else { | ||
this.railMin = parseInt((this.domNode.getAttribute('aria-valuemin'))); | ||
}; | ||
|
||
if (this.domNode.nextElementSibling) { | ||
this.maxDomNode = this.domNode.nextElementSibling; | ||
this.railMax = parseInt((this.maxDomNode.getAttribute('aria-valuemax'))); | ||
} | ||
|
||
else { | ||
this.railMax = parseInt((this.domNode.getAttribute('aria-valuemax'))); | ||
} | ||
|
||
this.valueNow = parseInt((this.domNode.getAttribute('aria-valuenow'))); | ||
|
||
this.railWidth = parseInt(this.railDomNode.style.width.slice(0, -2)); | ||
|
||
if (this.domNode.classList.contains('min')) { | ||
this.labelDomNode = this.domNode.parentElement.previousElementSibling; | ||
} | ||
|
||
if (this.domNode.classList.contains('max')) { | ||
this.labelDomNode = this.domNode.parentElement.nextElementSibling; | ||
} | ||
|
||
if (this.domNode.tabIndex != 0) { | ||
this.domNode.tabIndex = 0; | ||
} | ||
|
||
this.domNode.addEventListener('keydown', this.handleKeyDown.bind(this)); | ||
this.domNode.addEventListener('mousedown', this.handleMouseDown.bind(this)); | ||
this.domNode.addEventListener('focus', this.handleFocus.bind(this)); | ||
this.domNode.addEventListener('blur', this.handleBlur.bind(this)); | ||
|
||
this.moveSliderTo(this.valueNow); | ||
|
||
}; | ||
|
||
Slider.prototype.moveSliderTo = function (value) { | ||
var valueMax = parseInt(this.domNode.getAttribute('aria-valuemax')); | ||
var valueMin = parseInt(this.domNode.getAttribute('aria-valuemin')); | ||
|
||
if (value > valueMax) { | ||
value = valueMax; | ||
} | ||
|
||
if (value < valueMin) { | ||
value = valueMin; | ||
} | ||
|
||
this.valueNow = value; | ||
this.dolValueNow = '$' + value; | ||
|
||
this.domNode.setAttribute('aria-valuenow', this.valueNow); | ||
this.domNode.setAttribute('aria-valuetext', this.dolValueNow); | ||
|
||
if (this.minDomNode) { | ||
this.minDomNode.setAttribute('aria-valuemax', this.valueNow); | ||
} | ||
|
||
if (this.maxDomNode) { | ||
this.maxDomNode.setAttribute('aria-valuemin', this.valueNow); | ||
} | ||
|
||
var pos = Math.round(((this.valueNow - this.railMin) * (this.railWidth - 2 * (this.thumbWidth - this.railBorderWidth))) / (this.railMax - this.railMin)); | ||
|
||
if (this.minDomNode) { | ||
this.domNode.style.left = (pos + this.thumbWidth - this.railBorderWidth) + 'px'; | ||
} | ||
else { | ||
this.domNode.style.left = (pos - this.railBorderWidth) + 'px'; | ||
} | ||
|
||
if (this.labelDomNode) { | ||
this.labelDomNode.innerHTML = this.dolValueNow.toString(); | ||
} | ||
}; | ||
|
||
Slider.prototype.handleKeyDown = function (event) { | ||
|
||
var flag = false; | ||
|
||
switch (event.keyCode) { | ||
case this.keyCode.left: | ||
case this.keyCode.down: | ||
this.moveSliderTo(this.valueNow - 1); | ||
flag = true; | ||
break; | ||
|
||
case this.keyCode.right: | ||
case this.keyCode.up: | ||
this.moveSliderTo(this.valueNow + 1); | ||
flag = true; | ||
break; | ||
|
||
case this.keyCode.pageDown: | ||
this.moveSliderTo(this.valueNow - 10); | ||
flag = true; | ||
break; | ||
|
||
case this.keyCode.pageUp: | ||
this.moveSliderTo(this.valueNow + 10); | ||
flag = true; | ||
break; | ||
|
||
case this.keyCode.home: | ||
this.moveSliderTo(this.railMin); | ||
flag = true; | ||
break; | ||
|
||
case this.keyCode.end: | ||
this.moveSliderTo(this.railMax); | ||
flag = true; | ||
break; | ||
|
||
default: | ||
break; | ||
} | ||
|
||
if (flag) { | ||
event.preventDefault(); | ||
event.stopPropagation(); | ||
} | ||
|
||
}; | ||
|
||
Slider.prototype.handleFocus = function (event) { | ||
this.domNode.classList.add('focus'); | ||
this.railDomNode.classList.add('focus'); | ||
}; | ||
|
||
Slider.prototype.handleBlur = function (event) { | ||
this.domNode.classList.remove('focus'); | ||
this.railDomNode.classList.remove('focus'); | ||
}; | ||
|
||
Slider.prototype.handleMouseDown = function (event) { | ||
|
||
var self = this; | ||
|
||
var handleMouseMove = function (event) { | ||
|
||
var diffX = event.pageX - self.railDomNode.offsetLeft; | ||
self.valueNow = self.railMin + parseInt(((self.railMax - self.railMin) * diffX) / self.railWidth); | ||
self.moveSliderTo(self.valueNow); | ||
|
||
event.preventDefault(); | ||
event.stopPropagation(); | ||
}; | ||
|
||
var handleMouseUp = function (event) { | ||
|
||
document.removeEventListener('mousemove', handleMouseMove); | ||
document.removeEventListener('mouseup', handleMouseUp); | ||
|
||
}; | ||
|
||
// bind a mousemove event handler to move pointer | ||
document.addEventListener('mousemove', handleMouseMove); | ||
|
||
// bind a mouseup event handler to stop tracking mouse movements | ||
document.addEventListener('mouseup', handleMouseUp); | ||
|
||
event.preventDefault(); | ||
event.stopPropagation(); | ||
|
||
// Set focus to the clicked handle | ||
this.domNode.focus(); | ||
|
||
}; | ||
|
||
// handleMouseMove has the same functionality as we need for handleMouseClick on the rail | ||
// Slider.prototype.handleClick = function (event) { | ||
|
||
// var diffX = event.pageX - this.railDomNode.offsetLeft; | ||
// this.valueNow = parseInt(((this.railMax - this.railMin) * diffX) / this.railWidth); | ||
// this.moveSliderTo(this.valueNow); | ||
|
||
// event.preventDefault(); | ||
// event.stopPropagation(); | ||
|
||
// }; | ||
|
||
// Initialise Sliders on the page | ||
window.addEventListener('load', function () { | ||
|
||
var sliders = document.querySelectorAll('[role=slider]');; | ||
|
||
for (var i = 0; i < sliders.length; i++) { | ||
var s = new Slider(sliders[i]); | ||
s.init(); | ||
} | ||
|
||
}); |
Oops, something went wrong.