Slideshow - Wordpress plugin

Discussion in 'HTML & Website Design' started by abhi786, Feb 22, 2015.

  1. #1
    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.
     
    abhi786, Feb 22, 2015 IP
  2. Vladimir Lisovets

    Vladimir Lisovets Active Member

    Messages:
    34
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    93
    #2
    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.
     
    Vladimir Lisovets, Feb 23, 2015 IP
  3. abhi786

    abhi786 Active Member

    Messages:
    122
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    51
    #3
    Hi,
    Thanks for the reply but I am not able to understand it. Could you please refer any demos? Thanks.
     
    abhi786, Feb 24, 2015 IP
  4. Vladimir Lisovets

    Vladimir Lisovets Active Member

    Messages:
    34
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    93
    #4
    jQuery Steps Examples -> http://www.jquery-steps.com/Examples
     
    Vladimir Lisovets, Feb 27, 2015 IP