Coin Slider
Ivan Lazarevic
Wersja: 1.0.0
Numer wersji wtyczki
Dokumentacja
Sprawdź wszystkie opcje jakie oferuje plugin
Strona wtyczki
Oficjalna witryna wtyczki
Github
Repozytorium Github
Wersja jQuery: jquery >=1.2.2
Wersja jQuery z którą współpracuje plugin
Licencja: MIT
Licencja
Zobacz więcej
Coin Slider
Autor | Ivan Lazarevic |
Wersja: | 1.0.0 |
Dokumentacja: | Dokumentacja |
Strona wtyczki: | Strona wtyczki |
Github: | Github |
Wersja jQuery: | jquery >=1.2.2 |
Licencja: | MIT |
Zgłoś błąd: | Zgłoś błąd |
Data opublikowania: | 2013-04-12 |
Historia wersji
Wersja | Data publikacji |
---|---|
1.0.0 | 2013-04-12 |
Tagi
Instalacja
- Biblioteki
- HTML
- JS
<link href="coin-slider-styles.css" rel="stylesheet" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="coin-slider.js"></script>
<div id="coin-slider">
<a href="#">
<img src="http://jquery.netid.pl/media/sample/450x600/4.jpg" alt="" />
<span>
Description for 1
</span>
</a>
<a href="#">
<img src="http://jquery.netid.pl/media/sample/450x600/5.jpg" alt="" />
<span>
Description for 2
</span>
</a>
<a href="#">
<img src="http://jquery.netid.pl/media/sample/450x600/6.jpg" alt="" />
<span>
Description for 3
</span>
</a>
</div>
$(document).ready(function() {
var $container = $('#coin-slider');
$container.coinslider({
width: 450,
height: 600,
navigation: true,
delay: 5000,
titleSpeed: 100
});
});