cyrfandli
cyrfandli

Reputation: 249

How can I hide the navigation buttons and the pagination in SlidesJS?

I downloaded SlideJS and I'm trying to hide the navigation buttons and the pagination to get a sipmle automatic slideshow but I can't figure it out. How can it be done?

Upvotes: 2

Views: 1763

Answers (1)

Aamir Afridi
Aamir Afridi

Reputation: 6411

Here is the code. You just need to activate few options as you can see below.

Here is the demo: http://jsbin.com/AtiWOVAD/1/edit

$(function () {
  $("#slides").slidesjs({
    play: {
        active: false,
        effect: "slide",
        interval: 2000,
        auto: true,
        swap: true,
        pauseOnHover: false,
        restartDelay: 2000
    },
    navigation: false
  });
});

Upvotes: 3

Related Questions