This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="multiple-slide-container" class="slides"> | |
<h2>Multiple slides example:</h2> | |
<div class="triple-slides"> | |
<div class="item-triple triple-first-one"> | |
<a href="#"> | |
<div class="foreground-triple"> | |
<div class="overlay"></div> | |
<div class="element icon"></div> | |
<div class="element title">Michelle</div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.triple-slides').each(function(index, el){ | |
$(this).destaque({ | |
slideMovement: 100, | |
slideSpeed: 1000, | |
elementSpeed: 1100, | |
easingType: "easeInOutExpo", | |
itemSelector: ".item-triple", | |
itemForegroundElementSelector: ".foreground-triple .element", | |
controlsSelector: "#slide-triple-pagination a" | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="slide-container" class="slides"> | |
<div class="item first"> | |
<a href="#"> | |
<div class="foreground"> | |
<div class="overlay"></div> | |
<div class="element icon"></div> | |
<div class="element title">Aline Espíndola</div> | |
<div class="element subtitle">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam sed lacus vel mi imperdiet mollis. Nulla at nisi quam, at porta magna.</div> | |
</div> | |
</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$("#slide-container").destaque({ | |
slideMovement: 100, | |
slideSpeed: 1000, | |
elementSpeed: 1100, | |
easingType: "easeInOutExpo", | |
itemSelector: ".item", | |
itemForegroundElementSelector: ".foreground .element", | |
controlsSelector: "#slide-pagination a" | |
}); |
NewerOlder