133 lines
No EOL
4 KiB
HTML
133 lines
No EOL
4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Swiper demo</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
|
|
|
|
<!-- Link Swiper's CSS -->
|
|
<link rel="stylesheet" href="../dist/css/swiper.min.css">
|
|
|
|
<!-- Demo styles -->
|
|
<style>
|
|
html, body {
|
|
position: relative;
|
|
height: 100%;
|
|
}
|
|
body {
|
|
background: #eee;
|
|
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
|
|
font-size: 14px;
|
|
color:#000;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.swiper-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.swiper-slide {
|
|
text-align: center;
|
|
font-size: 18px;
|
|
background: #fff;
|
|
|
|
/* Center slide text vertically */
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
-webkit-box-pack: center;
|
|
-ms-flex-pack: center;
|
|
-webkit-justify-content: center;
|
|
justify-content: center;
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
-webkit-align-items: center;
|
|
align-items: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- Swiper -->
|
|
<div class="swiper-container">
|
|
<div class="swiper-wrapper">
|
|
<div class="swiper-slide">Slide 1</div>
|
|
<div class="swiper-slide">Slide 2</div>
|
|
<div class="swiper-slide">Slide 3</div>
|
|
<div class="swiper-slide">Slide 4</div>
|
|
<div class="swiper-slide">Slide 5</div>
|
|
<div class="swiper-slide">Slide 6</div>
|
|
<div class="swiper-slide">Slide 7</div>
|
|
<div class="swiper-slide">Slide 8</div>
|
|
<div class="swiper-slide">Slide 9</div>
|
|
<div class="swiper-slide">Slide 10</div>
|
|
</div>
|
|
<!-- Add Pagination -->
|
|
<div class="swiper-pagination"></div>
|
|
<!-- Add Navigation -->
|
|
<div class="swiper-button-prev"></div>
|
|
<div class="swiper-button-next"></div>
|
|
</div>
|
|
|
|
<!-- Swiper JS -->
|
|
<script src="../dist/js/swiper.min.js"></script>
|
|
|
|
<!-- Include plugin after Swiper -->
|
|
<script>
|
|
/* ========
|
|
Debugger plugin, simple demo plugin to console.log some of callbacks
|
|
======== */
|
|
Swiper.prototype.plugins.debugger = function (swiper, params) {
|
|
if (!params) return;
|
|
// Need to return object with properties that names are the same as callbacks
|
|
return {
|
|
onInit: function (swiper){
|
|
console.log('onInit');
|
|
},
|
|
onClick: function (swiper, e) {
|
|
console.log('onClick');
|
|
},
|
|
onTap: function (swiper, e) {
|
|
console.log('onTap');
|
|
},
|
|
onDoubleTap: function (swiper, e) {
|
|
console.log('onDoubleTap');
|
|
},
|
|
onSliderMove: function (swiper, e) {
|
|
console.log('onSliderMove');
|
|
},
|
|
onSlideChangeStart: function (swiper) {
|
|
console.log('onSlideChangeStart');
|
|
},
|
|
onSlideChangeEnd: function (swiper) {
|
|
console.log('onSlideChangeEnd');
|
|
},
|
|
onTransitionStart: function (swiper) {
|
|
console.log('onTransitionStart');
|
|
},
|
|
onTransitionEnd: function (swiper) {
|
|
console.log('onTransitionEnd');
|
|
},
|
|
onReachBeginning: function (swiper) {
|
|
console.log('onReachBeginning');
|
|
},
|
|
onReachEnd: function (swiper) {
|
|
console.log('onReachEnd');
|
|
}
|
|
};
|
|
};
|
|
</script>
|
|
|
|
<!-- Initialize Swiper -->
|
|
<script>
|
|
var swiper = new Swiper('.swiper-container', {
|
|
pagination: '.swiper-pagination',
|
|
paginationClickable: true,
|
|
nextButton: '.swiper-button-next',
|
|
prevButton: '.swiper-button-prev',
|
|
// Enable debugger
|
|
debugger: true
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |