The Basic Explanation or skip to downloadThis is Nerve Slider, an extremely customizable jQuery image gallery. It's a responsive, multi-transitional, image-scaleable fading/sliding image gallery. Set it as a background slideshow, use it as a "living" thumbnail scroller, or even use it to scroll news. Nerve Slider is the most versatile slider ever. Some of its features include that it is...
|
Supported
|
Nerve Slider was built around you. It comes with quite a few options, all made to help you customize Nerve Slider to your liking.
As of now, Nerve Slider has [undefined] options, each made to blend with your needs, and make it easy to do so. Add a few options here and there, and boom - it's yours.
Don't like that color there? Nerve Slider comes with unminified CSS, meaning humans like you and I can read it without too much of a struggle. That way you can edit it the way you want, making the slider look like your very own.
Want to see test out a new demo for Nerve Slider? Check it out
Nerve's setup is a very simple process, done in just 4 simple steps. When you're done, you'll have an awesome new gallery to play with!
1 Include the jQuery library
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script> <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js"></script>
2 Include the Nerve Slider jQuery & CSS:
<script type="text/javascript" src="http://code.ryanbruzan.net/nerveSlider/jquery.nerveSlider.min.js"></script> <link type="text/css" href="http://code.ryanbruzan.net/nerveSlider/style.css">
Hint: Can't host the files yourself? Use the code above to link directly to them.
3 Make a div with any class or ID and throw in your img's. Attributes you can add to your img's can be viewed in the table below.
Apply any of the following attributes to any of your img elements.
<div class="iAmTest"> <img src="test.jpg"> <img src="test2.png"> <img src="test3.gif"> <!-- etc... --> </div>
Another cool feature? You can put any content you want onto Nerve Slider! Just wrap your img in a div and create another div with a class of "content" inside. Then, write away!
<div class="iAmTest"> <div> <img src="test.jpg"> <div class="content"> Anything can go here! You're in control! </div> </div> <img src="test2.png"> <img src="test3.gif"> <!-- etc... --> </div>
4 Set up Nerve Slider to your liking, using the div's class or ID you used in Step 3. There are several settings that come with Nerve Slider.
<script>
$(document).ready(function(){
$(".iAmTest").startslider({
// options...
});
});
</script>
Using the content feature, you can add videos to Nerve Slider. Simply use a video's embed code and add it to your content div.
<div class="iAmTest"> <div><div class="content"> <iframe width="100%" height="100%" src="http://www.youtube.com/embed/nCgQDjiotG0?rel=0"></iframe> </div></div> <img src="test2.png"> <img src="test3.gif"> <!-- etc... --> </div>
Download Files |