I am using this plugin and I am having problems using one of its functions.
Then I wanted to add the following function ->
http://www.malsup.com/jquery/cycle/int2.html at the top left it shows you how to make your plugin advance to slide by clicking on the picture. I have tried and Its working :)... now I am trying to use the one n the right side (Prev/Next) and I just dont have any ideas how to make it work with the code I already have. I am not sure if I have use html or something so that buttons Prev and Next show up in my website.
To be honest, Its the first time I am doing something like this so I'd be really happy if some could help me out :D
MY CODE:
- $('#slideshow-portfolio ul').cycle({
- timeout: 5000,// milliseconds between slide transitions (0 to disable auto advance)
- fx: 'fade',// choose your transition type, ex: fade, scrollUp, shuffle, etc...
- pager: '#nav',// selector for element to use as pager container
- pagerEvent: 'mouseover',
- next: '#slideshow-portfolio ul',
- delay: 0, // additional delay (in ms) for first transition (hint: can be negative)
- speed: 1000, // speed of the transition (any valid fx speed value)
- pause: true,// true to enable "pause on hover"
- cleartypeNoBg: true,// set to true to disable extra cleartype fixing (leave false to force background color setting on slides)
- pauseOnPagerHover: true // true to pause when hovering over pager link
- });