Hi Friends, I am struggling to find best Slideshow wordpress plugin. Below is my requirement. Please advice if you know any plugins for free or to buy. I want to show 10 to 15 posts in a single post with pagination and each page should accommodate an image, small content and a video. Thank you.
There is a awesome jQuery plugin called : jQuery Steps I'm not sure about the usage of jquery in wordpress, by the way, you can check it right here : http://www.jquery-steps.com/ jQuery Steps on GitHub -> https://github.com/rstaib/jquery-steps/wiki What do you need : jQuery Library (search for google's CDN) jQuery Steps Plugin -> https://github.com/rstaib/jquery-steps/blob/master/build/jquery.steps.min.js jQuery Steps CSS -> https://github.com/rstaib/jquery-steps/tree/master/demo/css Extra : jQuery Steps Examples -> http://www.jquery-steps.com/Examples Download Demo -> https://github.com/rstaib/jquery-steps/tree/master/demo Making it easier for you giving you a simple usage of that : <div id="slideshow"> <h3></h3> <section> </section> </div> <script> var settings = { headerTag: "h3", bodyTag: "section", enableFinishButton: false, transitionEffect: "slideLeft", transitionEffectSpeed: 500, autoFocus: true, labels: { current: "current step:", pagination: "Pagination", finish: "Finish", next: "Next", previous: "Previous", loading: "Loading ..." } }; $("#slideshow").steps(settings); </script> Check for documentation for more settings and methods that you can use. Hope that helped.
Hi, Thanks for the reply but I am not able to understand it. Could you please refer any demos? Thanks.