JAVASCRIPT EXAMPLES Basic Slider
In this very basic slider example, an instance of Uize.Widget.Bar.Slider
is being wired up to slider markup in the page. The slider simply allows for selection of a value in the range of 0 to 200. The markup in the page helps to illustrate the DOM structure and DOM nodes expected by the Uize.Widget.Bar.Slider
class.

- Canonicalized to Equivalent Signature
- Uize.Fade.Factory.fade (slider,0,200,2000)
- Uize.Fade.Factory.fade ({context:slider,handler:'set'},{value:0},{value:200},2000)
- Uize.Fade.Factory.fadeProperty (slider,'value',0,200,2000)
- Uize.Fade.Factory.fadeProperties (slider,{value:0},{value:200},2000)
- Uize.Fade.Factory.fadeMethod (slider,'set',{value:0},{value:200},2000)
- Equivalent, But Not Matching Above