jQuery UI Widgets Forums Navigation Tabs Header slideshow

This topic contains 1 reply, has 2 voices, and was last updated by  Peter Stoev 13 years, 3 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • Header slideshow #1092

    rkabar
    Blocked

    Hello,

    I’m building something like a slideshow header in my blog. I want to have tabs without any text in it’s title – more like a little buttons. I also want to have a time out on which different pictures with some text to be changed. I think that your tab widget could be useful for this goal. How can I do this?

    Header slideshow #1113

    Peter Stoev
    Keymaster

    Hi rkabar,

    I’ve prepared a small demo which shows how this can be achieved.

    In general, you need to switch between tabs after some time interval.

         (function slideShow() {
    setTimeout(function () {
    if ($('#jqxTabs').jqxTabs('selectedItem') < 5) {
    $('#jqxTabs').jqxTabs('next');
    } else {
    $('#jqxTabs').jqxTabs('first');
    }
    slideShow();
    }, 3000)
    }());

    Demo: jQuery Tabs Slideshow

    Download link: slideshow.zip

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.