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.
layui/examples/slider.html

57 lines
1.3 KiB

6 years ago
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>滑块 - layui</title>
<link rel="stylesheet" href="../src/css/layui.css">
<style>
6 years ago
body{padding:100px 0;}
6 years ago
</style>
</head>
<body>
<div class="layui-container">
6 years ago
<div id="slideTest1"></div>
6 years ago
</div>
<script src="../src/layui.js"></script>
<script>
layui.use('slider', function(){
var slider = layui.slider;
6 years ago
5 years ago
var sliderInst = slider.render({
6 years ago
elem: '#slideTest1'
6 years ago
//,type: 'vertical'
6 years ago
//,min: -20 //最小值
//,max: 20 //最大值
//,value: 10 //[40, 60] //初始值
//,step: 10 //间隔值
6 years ago
//,showstep: true //间隔点
//,tips: false //关闭提示文本
,input: true //输入框
//,range: true //范围选择
,change: function(value){ //回调实时显示当前值
console.log(value)
}
4 years ago
,setTips: function(value){ //自定义提示文本
return value + '%';
}
6 years ago
//,setTips: function(value){ //自定义提示文本
//return '离世界末日还有 ' + value + ' 天';
//}
//,height: '300' //配合 type:'vertical' 参数使用默认200px
//,disabled: true //禁用滑块
//,theme: '#c00' //主题色
6 years ago
});
5 years ago
4 years ago
sliderInst.setValue(30);
6 years ago
});
</script>
</body>
</html>