PxProSlideShow jQuery Plugin

I have not tried this one yet, but the Slick Carousel is worth looking into.

Features

Limitations

If you are looking for something with navigation buttons and indicators, check out my Pixel Pro Content Slider.

How to Use

  1. Place your content on the page. It should be wrapped in a <div> with the class "pxproSlider". For example:

    <div id="slideshow1" class="pxproSlider">
    	<img class="pxproItem" src="img/montreal1.jpg" width="810" height="608">
    	<img class="pxproItem" src="img/montreal2.jpg" width="810" height="608">
    	<img class="pxproItem" src="img/montreal3.jpg" width="810" height="608">
    	<img class="pxproItem" src="img/montreal4.jpg" width="810" height="608">
    	<img class="pxproItem" src="img/montreal4.jpg" width="810" height="608">
    </div>
  2. Assign the class "pxproItem" to each of the items (usually pictures).

  3. Add some CSS to style and position the content slider.

    <style type="text/css">
    /* You probably ought not change these two rules */
    .pxproSlider { position:relative; overflow:hidden; }
    .pxproItem { position:absolute; left:0; top:0; z-index:1; }
    
    /* User editable */
    .pxproSlider {
    	width:1010px;
    	height:570px;
    	background-color:white;
    }
    </style>
  4. Add the jQuery library to your page.

  5. Add the PxProSlideShow plugin to your page.

  6. Activate (call) the slideshow. For example:

    $('#slideshow1').PxProSlideShow({width:810});

  7. Optionally, you make want to tweak some of the defaults.

    For example, the slideshow at the top of this page is using:

    $('#slideshow1').PxProSlideShow({duration:6000, width:810, leftOffset:15});

Any Type of Content

It is possible to place anything in these sliders; headers, paragraphs, videos, hyperlinks, etc.