BrowserSwipe
Ken Wheeler
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.7
Wersja jQuery z którą współpracuje plugin
Licencja: GPLv2
Licencja
Zobacz więcej
BrowserSwipe
Autor | Ken Wheeler |
Wersja: | 1.0.0 |
Dokumentacja: | Dokumentacja |
Strona wtyczki: | Strona wtyczki |
Github: | Github |
Wersja jQuery: | jquery >=1.7 |
Licencja: | GPLv2 |
Zgłoś błąd: | Zgłoś błąd |
Data opublikowania: | 2014-03-17 |
Historia wersji
Wersja | Data publikacji |
---|---|
1.0.0 | 2014-03-17 |
Tagi
Instalacja
- Biblioteki
- CSS
- JS
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script src="browserswipe.min.js"></script>
<script src="touchswipe.js"></script>
html, body {
height: 100%;
overflow: hidden;
}
$.browserSwipe({
up: function(){
slideHandle('up');
},
down: function(){
slideHandle('down');
}
});
function slideHandle(direction) {
switch(direction) {
case 'up':
if(currentScene > 0) {
currentScene--;
sceneHandle();
}
break;
case 'down':
if(currentScene < ($cache.scenes.length - 1)) {
currentScene++;
sceneHandle();
}
break;
}
}