手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >jQuery实现的支持IE的html滑动条
jQuery实现的支持IE的html滑动条
摘要:复制代码代码如下:.d_b{height:20px;width:10px;display:inline-block;background-c...

复制代码 代码如下:

<html>

<script type="text/javascript" src="jquery.js"></script>

<style>

.d_b{

height: 20px;

width: 10px;

display: inline-block;

background-color: black;

position: relative;

vertical-align: middle;

top: -15px;

left: -5px;

}

</style>

<div id="d" max=100 min=0 value=10 >

<div ></div>

<b></b>

</div>

<b id="text"></b>

<script>

var $dom = $(document);

$dom.on('mousedown','#d',function (argument) {

$(this).data('mouse','down');

console.log('down');

})

$dom.on('mouseup',function(){

$('#d').data('mouse','up');

console.log('up');

});

$dom.on('mousemove','#d',function(event){

if($(this).data('mouse') == 'down'){

var m_x = event.clientX;

var d_b = $(this).find('.d_b');

m_x = m_x < 8 ? 8 : m_x;

m_x = m_x > 208 ? 208: m_x;

d_b.css('left',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'))

}

});

</script>

</html>

效果图:

jQuery实现的支持IE的html滑动条1

以上就是本文的全部内容了,希望能够对大家学习使用jQuery有所帮助。

【jQuery实现的支持IE的html滑动条】相关文章:

jQuery获取上传文件的名称的正则表达式

jquery实现用户打分评分特效

原生js实现的贪吃蛇网页版游戏完整实例

jQuery实现不断闪烁文字的方法

jQuery实现dialog设置focus焦点的方法

jquery实现图片左右切换的方法

jQuery封装的tab选项卡插件分享

jQuery实现在列表的首行添加数据

jQuery插件bgStretcher.js实现全屏背景特效

基于jQuery实现的无刷新表格分页实例

精品推荐
分类导航