jQuery – Auto Scrolling the Slider


B03B0037 Question from Yuhsin:

I would like to make the jquery steps slider to do auto-increment when the window loads. Is there an easy way to trigger the slide to move by itself ?

I’m assuming this question is looking for the content to auto scroll as well.  So let’s pull up the code from last week and take a look at this issue.

There is a timer plugin available for jQuery that will do some of the work for you, but all we really need for this functionality is:

  • A function to do the auto incrementing
  • A call to the javascript setTimeout() function.

So first, the auto incrementing function.

function scrollWindow() {

    var slideValue;
    slideValue = $("#slider").slider("value");
    if(slideValue > -100)
    {
        $("#slider").slider("value", slideValue - 1);
        setTimeout(scrollWindow, 1000);
    }
}

A couple things to note about this function:

  • We are retrieving the current position of the slider using the .slider() method of the slider widget.
  • We are assuming that the range of our slider is between 0 and -100.
  • We call setTimeout at the end to call this function again in a second.
  • We only call setTimeout if we have not reached the end of our scrolling.

The only thing left is that we need to kick this off when the page loads.  To do this we add a call to setTimeout in our jQuery ready method:

$(function() {
    $("#slider").slider(
    { change: handleChange,
        slide: handleSlide,
        min: -100,
        max: 0
    });
    setTimeout(scrollWindow, 1000);
});

The actual scrolling of the window happens “automatically” with the code we wrote last week.

 


Other post in jQuery
Ads by Lake Quincy Media

Other Related Items:

jQuery Cookbook (Animal Guide)jQuery Cookbook (Animal Guide)jQuery simplifies building rich, interactive web frontends. Getting started with this JavaScript library is easy, but it can take years to fully reali... Read More >
BuiltBurger 10 Pack of delicious Flavored Gourmet Burgers - 6 oz. eachBuiltBurger 10 Pack of delicious Flavored Gourmet Burgers - 6 oz. eachWeve taken the burger to the next level. From a simple patty to a gourmet meal. Its our passion. Taste what everyone is talking about. All BuiltBu... Read More >

If you're new here, you may want to subscribe to my RSS feed. Thanks for visiting!

Related Post

Comments are closed.

DotNetNuke Sponsor

 

Most Valuable Blogger
Sponsor