You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
127 lines
3.3 KiB
127 lines
3.3 KiB
7 years ago
|
/**
|
||
|
* Created by Urthur on 2017/9/4.
|
||
|
*/
|
||
|
Demo.Slider = BI.inherit(BI.Widget, {
|
||
|
_defaultConfig: function () {
|
||
|
return BI.extend(Demo.Slider.superclass._defaultConfig.apply(this, arguments), {
|
||
|
baseCls: "demo-slider",
|
||
|
min: 10,
|
||
|
max: 50
|
||
|
})
|
||
|
},
|
||
|
_init: function () {
|
||
|
Demo.Slider.superclass._init.apply(this, arguments);
|
||
7 years ago
|
|
||
7 years ago
|
var singleSlider = BI.createWidget({
|
||
|
type: "bi.single_slider",
|
||
7 years ago
|
digit: 0,
|
||
7 years ago
|
width: 300,
|
||
7 years ago
|
height: 50,
|
||
|
cls: "layout-bg-white"
|
||
7 years ago
|
});
|
||
|
|
||
7 years ago
|
singleSlider.setMinAndMax({
|
||
|
min: 10,
|
||
|
max: 100
|
||
7 years ago
|
});
|
||
|
|
||
7 years ago
|
singleSlider.setValue(30);
|
||
7 years ago
|
singleSlider.populate();
|
||
7 years ago
|
singleSlider.on(BI.SingleSlider.EVENT_CHANGE, function () {
|
||
|
console.log(this.getValue());
|
||
|
});
|
||
7 years ago
|
|
||
7 years ago
|
var singleSliderLabel = BI.createWidget({
|
||
|
type: "bi.single_slider_label",
|
||
7 years ago
|
height: 50,
|
||
7 years ago
|
width: 300,
|
||
|
digit: 0,
|
||
7 years ago
|
unit: "个",
|
||
|
cls: "layout-bg-white"
|
||
7 years ago
|
});
|
||
|
singleSliderLabel.setMinAndMax({
|
||
|
min: 0,
|
||
|
max: 100
|
||
|
});
|
||
|
singleSliderLabel.setValue(10);
|
||
|
singleSliderLabel.populate();
|
||
|
|
||
7 years ago
|
var normalSingleSlider = BI.createWidget({
|
||
|
type: "bi.single_slider_normal",
|
||
7 years ago
|
height: 30,
|
||
7 years ago
|
width: 300,
|
||
|
cls: "layout-bg-white"
|
||
7 years ago
|
});
|
||
7 years ago
|
normalSingleSlider.setMinAndMax({
|
||
|
min: 0,
|
||
|
max: 100
|
||
|
});
|
||
|
normalSingleSlider.setValue(10);
|
||
7 years ago
|
normalSingleSlider.populate();
|
||
|
|
||
7 years ago
|
|
||
|
var intervalSlider = BI.createWidget({
|
||
|
type: "bi.interval_slider",
|
||
|
width: 300,
|
||
|
cls: "layout-bg-white"
|
||
|
});
|
||
|
intervalSlider.setMinAndMax({
|
||
|
min: 0,
|
||
|
max: 120
|
||
|
});
|
||
|
intervalSlider.setValue({
|
||
|
min: 10,
|
||
|
max: 120
|
||
|
});
|
||
|
intervalSlider.populate();
|
||
|
|
||
|
var intervalSliderLabel = BI.createWidget({
|
||
|
type: "bi.interval_slider_label",
|
||
|
width: 300,
|
||
|
cls: "layout-bg-white"
|
||
|
});
|
||
|
intervalSliderLabel.setMinAndMax({
|
||
|
min: 0,
|
||
|
max: 120
|
||
|
});
|
||
|
intervalSliderLabel.setValue({
|
||
|
min: 10,
|
||
|
max: 120
|
||
|
});
|
||
|
intervalSliderLabel.populate();
|
||
|
|
||
|
|
||
7 years ago
|
BI.createWidget({
|
||
7 years ago
|
type: "bi.vertical",
|
||
7 years ago
|
element: this,
|
||
|
items: [{
|
||
7 years ago
|
type: "bi.center_adapt",
|
||
|
items: [{
|
||
|
el: singleSlider
|
||
|
}]
|
||
|
}, {
|
||
|
type: "bi.center_adapt",
|
||
|
items: [{
|
||
|
el: normalSingleSlider
|
||
|
}]
|
||
|
}, {
|
||
|
type: "bi.center_adapt",
|
||
|
items: [{
|
||
|
el: singleSliderLabel
|
||
|
}]
|
||
7 years ago
|
}, {
|
||
7 years ago
|
type: "bi.center_adapt",
|
||
|
items: [{
|
||
|
el: intervalSlider
|
||
|
}]
|
||
7 years ago
|
}, {
|
||
7 years ago
|
type: "bi.center_adapt",
|
||
|
items: [{
|
||
|
el: intervalSliderLabel
|
||
|
}]
|
||
7 years ago
|
}],
|
||
7 years ago
|
vgap: 20
|
||
7 years ago
|
});
|
||
7 years ago
|
}
|
||
|
});
|
||
|
BI.shortcut("demo.slider", Demo.Slider);
|