腳本>
.d_b{
高度:20px;
寬度:10px;
顯示:內聯塊;
背景顏色:黑色;
位置:相對;
垂直對齊:中間;
上:-15px;
左:-5px;
}
風格>
var $dom = $(文檔);
$dom.on('mousedown','#d',函數(參數){
$(this).data('滑鼠','向下');
console.log('down');
})
$dom.on('mouseup',function(){
$('#d').data('滑鼠','向上');
console.log('up');
});
$dom.on('mousemove','#d',function(event){
if($(this).data('滑鼠') == '向下'){
var m_x = event.clientX;
var d_b = $(this).find('.d_b');
m_x = m_x
m_x = m_x > 208? 208:m_x;
d_b.css('左',m_x-13);
var max = $(this).attr('max');
$(this).attr('value', Math.floor((m_x-8)/200 * max))
console.log($(this).attr('value'));
$('#text').text($(this).attr('value'))
}
});
腳本>