nivo-1.jpg nivo-2.jpg nivo-3.jpg

Nivo Slider

Nivo Slider looks like Flash but uses the built in stability of jQuery. It can display pictures from your fileset with or without caption title.

Visit the Showcase page of the creator for more information.





Download

The block are available for $15 on the Concrete5 Marketplace.

Buy Nivo Slider

Features

  • 15 unique transitions to choose from or have them randomly applied. new-small.png
  • Configurable animation speed, image display time and number of slices.
  • Optional bullet or thumbnail navigation.
  • Optionally link each image to a separate url.
  • Optional keyboard navigation and pause on hover controls.
  • External CSS file for easy customization.
  • Randomize option new-small.png

Not only a Header Gallery

Works well for headers but works anywhere on your page.

Images should be pre-sized for your layout to avoid cropping.

<?php
$bt_ns = BlockType::getByHandle('nivo_slider');
$bt_ns->controller->fsID = 1; // ID of your fileset
$bt_ns->controller->effect = 'random'; // choose from : sliceDown, sliceDownLeft, sliceUp, sliceUpLeft, sliceUpDown, sliceUpDownLeft, fold, fade, random
$bt_ns->controller->slices = 10;
$bt_ns->controller->animSpeed = 500;
$bt_ns->controller->pauseTime = 3000;
$bt_ns->controller->startSlide = 0; 
$bt_ns->controller->options('pauseOnHover','directionNav','directionNavHide','controlNav', 'controlNav', 'controlNumbers', 'keyboardNav', 'randomize'); // remove option from string to disable them
$bt_ns->render('view');
?>