Jquery slider that slides while mouse move

社会主义新天地 提交于 2019-12-11 07:13:12

问题


I'm looking for a jquery slider script that is able to right-left slide while I'm moving my mouse. Anyone knows that kind of script? I want to achieve an effect like this one but it should be scrolled horizontal, not vertical.


回答1:


Do you mean something like this. It's a very basic thing that uses the jQuery UI Slider. I attach a handler to the mousemove event that just calculates what the value should be for the slider (based on the value of the mouse coordinates).

$(function() {

    var range = 100,
        sliderDiv = $("#slider");

    // Activate the UI slider
    sliderDiv.slider({
        min: 0,
        max: range
    });

    // Number of tick marks on slider
    var position = sliderDiv.position(),
        sliderWidth = sliderDiv.width(),
        minX = position.left,
        maxX = minX + sliderWidth,
        tickSize = sliderWidth / range;


    $(this).mousemove(function(e) {

        // If within the slider's width, follow it along
        if (e.pageX >= minX && e.pageX <= maxX) {
            var val = (e.pageX - minX) / tickSize;
            sliderDiv.slider("value", val);
        }

    });

});

It's not fantastic code, to be honest, but it does give a basic example of how to use the jQuery UI slider and how to set the value using code.

Example: http://jsfiddle.net/jonathon/qAMWQ/



来源:https://stackoverflow.com/questions/4626988/jquery-slider-that-slides-while-mouse-move

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!