Download
User Rating: 4.3/5 ( 1 votes)
Slidorion is a combination of an image slider and an accordion, the Slidorion displays beautiful images along with a variable length description. With slides linked to each tab, and accompanied by a large array of effects, the Slidorion is a great alternative to the traditional jQuery slider.
Source: slidorion.com
1. INCLUDE CSS AND JS FILES
<link rel="stylesheet" href="css/slidorion.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="js/jquery.easing.js"></script>
<script src="js/jquery.slidorion.min.js"></script>
2. HTML
<div id="slidorion" class="slidorion">
<div class="slider">
<div class="slide"><img src="img/boxing.jpg" /></div>
<div class="slide"><img src="img/athletics.jpg" /></div>
<div class="slide"><img src="img/basketball.jpg" /></div>
</div>
<div class="accordion">
<div class="header">Muhammad Ali</div>
<div class="content"><-- CONTENT GOES HERE --></div>
<div class="header">Usain Bolt</div>
<div class="content"><-- CONTENT GOES HERE --></div>
<div class="header">Michael Jordan</div>
<div class="content"><-- CONTENT GOES HERE --></div>
</div>
</div>
3. JAVASCRIPT
$(document).ready(function(){
$('#slidorion').slidorion({
speed: 1000,
interval: 4000,
effect: 'slideLeft'
});
});
4. OPTIONS
-
autoPlay - Automatically plays the slidorion (boolean)
-
easing - The easing of the animations (string)
-
effect - The effect of the animation (string)
-
first - The first slide to show (the rel of that slide) (string) see above
-
hoverPause - The slidorion pauses when hovered over (boolean)
-
interval - The time between each slide (number)
-
speed - The speed of the animation (number)
-
controlNav - Show navigation buttons (boolean)
-
controlNavClass - The class of the navigation control buttons (string)
5. EFFECTS
-
fade
-
slideRandom
-
overRandom
-
slideUp
-
slideRight
-
slideDown
-
slideLeft
-
overUp
-
overRight
-
overDown
-
overLeft
-
none