Reputation: 249
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
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