欢迎来到代码驿站!

jquery

当前位置:首页 > 网页前端 > jquery

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

时间:2020-11-04 11:32:14|栏目:jquery|点击:

复制代码 代码如下:

<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" style="width:200px;cursor: pointer;" max=100 min=0 value=10 >
<div style="height:10px; width:100%; background-color:green" ></div>
<b class="d_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有所帮助。

上一篇:jQuery Easyui DataGrid点击某个单元格即进入编辑状态焦点移开后保存数据

栏    目:jquery

下一篇:jQuery下拉美化搜索表单效果代码分享

本文标题:jQuery实现的支持IE的html滑动条

本文地址:http://www.codeinn.net/misctech/19104.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有