67 lines
No EOL
2.1 KiB
HTML
67 lines
No EOL
2.1 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 {
|
|
background-position: center;
|
|
background-size: cover;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- Swiper -->
|
|
<div class="swiper-container">
|
|
<div class="swiper-wrapper">
|
|
<div class="swiper-slide" style="background-image:url(http://lorempixel.com/1000/1000/nightlife/1)"></div>
|
|
<div class="swiper-slide" style="background-image:url(http://lorempixel.com/1000/1000/nightlife/2)"></div>
|
|
<div class="swiper-slide" style="background-image:url(http://lorempixel.com/1000/1000/nightlife/3)"></div>
|
|
<div class="swiper-slide" style="background-image:url(http://lorempixel.com/1000/1000/nightlife/4)"></div>
|
|
<div class="swiper-slide" style="background-image:url(http://lorempixel.com/1000/1000/nightlife/5)"></div>
|
|
</div>
|
|
<!-- Add Pagination -->
|
|
<div class="swiper-pagination swiper-pagination-white"></div>
|
|
<!-- Add Arrows -->
|
|
<div class="swiper-button-next swiper-button-white"></div>
|
|
<div class="swiper-button-prev swiper-button-white"></div>
|
|
</div>
|
|
|
|
<!-- Swiper JS -->
|
|
<script src="../dist/js/swiper.min.js"></script>
|
|
|
|
<!-- Initialize Swiper -->
|
|
<script>
|
|
var swiper = new Swiper('.swiper-container', {
|
|
pagination: '.swiper-pagination',
|
|
paginationClickable: true,
|
|
nextButton: '.swiper-button-next',
|
|
prevButton: '.swiper-button-prev',
|
|
spaceBetween: 30,
|
|
effect: 'fade'
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |