Support » Plugin: KickAss Slider » Bullet navigation

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author jashwant

    (@jashwant)

    You can always hide the default arrows and can create something of your own. next, prev and goToSlide are public methods and can be used to create any type of navigation.

    An example is given below:

    var slider = $('#containerDiv');
    var kas = slider.KickAssSlider().data('KickAssSlider');
    
    kas.next();  // slide next
    
    kas.prev();   // slide prev
    
    kas.goToSlide(n);  // slide to nth slide
    Thread Starter elsnare

    (@elsnare)

    Thanks for the info Jash, unfortunatley I have very little experiance with JS and have little to no idea what to do with this code 🙂

    I managed to output link elements for each slide counted, attached the kas.prev(); to an onclick event on the link for testing – but i’m getting “kas not registered” error on the console.

    Any quick tips? I just need a raw idea where to put stuff and probably can figure the rest on my own 🙂

    Thanks again.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Bullet navigation’ is closed to new replies.