input type=range滑动事件

Posted 马习习

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了input type=range滑动事件相关的知识,希望对你有一定的参考价值。

<input type="range"/>
需求:滑动时,计数
$.fn.RangeSlider = function(cfg) {
this.sliderCfg = {
min: cfg && !isNaN(parseFloat(cfg.min)) ? Number(cfg.min) : null,
max: cfg && !isNaN(parseFloat(cfg.max)) ? Number(cfg.max) : null,
step: cfg && Number(cfg.step) ? cfg.step : 1,
callback: cfg && cfg.callback ? cfg.callback : null
}
  var $input = $(this)
var min = this.sliderCfg.min
var max = this.sliderCfg.max
var step = this.sliderCfg.step
var callback = this.sliderCfg.callback
$input.attr(‘min‘, min)
.attr(‘max‘, max)
.attr(‘step‘, step)

$input.bind(‘input‘, function(e) {
$input.attr(‘value‘, this.value)
$input.css(‘background-size‘, this.value + ‘% 100%‘)
if ($.isFunction(callback)) {
callback(this)
}
})
}
var change = function($input) {
var Value = $(‘input‘).attr(‘value‘) * 5
var Price = Value + 200
var Price1 = Value + 150
var Price2 = Value + 100
$(‘.proportion‘).text(Value + ‘%‘)
$(‘.profit‘).text(‘¥‘ + Value)
$(‘.price‘).text(‘¥‘ + Price)
$(‘.price1‘).text(‘¥‘ + Price1)
$(‘.price2‘).text(‘¥‘ + Price2)
}
$(‘input‘).RangeSlider({ min: 0, max: 100, step: 1, callback: change })

以上是关于input type=range滑动事件的主要内容,如果未能解决你的问题,请参考以下文章

美化input type=range标签滑动样式(带渐变效果)

vue监听滑动事件,隐藏移动端键盘或者input失去焦点

Android adb 模拟滑动 按键 点击事件

Android adb 模拟滑动 按键 点击事件

移动端的爬坑路

H5移动端页面加入canvas可滑动代码条件下android手机点击input重复弹出键盘