Created
August 27, 2021 05:06
-
-
Save roseforyou/b94940ca46d274dd30f5ecfd04342e61 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/zisaber
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
<!-- Link Swiper's CSS --> | |
<link | |
rel="stylesheet" | |
href="https://unpkg.com/swiper/swiper-bundle.min.css" | |
/> | |
<!-- Swiper JS --> | |
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script> | |
<style id="jsbin-css"> | |
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 { | |
width: 100%; | |
padding-top: 50px; | |
padding-bottom: 50px; | |
} | |
.swiper-slide { | |
background-position: center; | |
background-size: cover; | |
width: 300px; | |
height: 300px; | |
} | |
.swiper-slide img { | |
display: block; | |
width: 100%; | |
} | |
</style> | |
</head> | |
<body> | |
<!-- Swiper --> | |
<div class="swiper mySwiper"> | |
<div class="swiper-wrapper"> | |
<div class="swiper-slide"> | |
<img src="https://swiperjs.com/demos/images/nature-1.jpg" /> | |
</div> | |
<div class="swiper-slide"> | |
<img src="https://swiperjs.com/demos/images/nature-2.jpg" /> | |
</div> | |
<div class="swiper-slide"> | |
<img src="https://swiperjs.com/demos/images/nature-3.jpg" /> | |
</div> | |
<div class="swiper-slide"> | |
<img src="https://swiperjs.com/demos/images/nature-4.jpg" /> | |
</div> | |
<div class="swiper-slide"> | |
<img src="https://swiperjs.com/demos/images/nature-5.jpg" /> | |
</div> | |
<div class="swiper-slide"> | |
<img src="https://swiperjs.com/demos/images/nature-6.jpg" /> | |
</div> | |
<div class="swiper-slide"> | |
<img src="https://swiperjs.com/demos/images/nature-7.jpg" /> | |
</div> | |
<div class="swiper-slide"> | |
<img src="https://swiperjs.com/demos/images/nature-8.jpg" /> | |
</div> | |
<div class="swiper-slide"> | |
<img src="https://swiperjs.com/demos/images/nature-9.jpg" /> | |
</div> | |
</div> | |
<div class="swiper-pagination"></div> | |
</div> | |
<script id="jsbin-javascript"> | |
var swiper = new Swiper(".mySwiper", { | |
effect: "coverflow", | |
grabCursor: true, | |
centeredSlides: true, | |
slidesPerView: "auto", | |
loop: true, | |
navigation:true, | |
coverflowEffect: { | |
rotate: 0, | |
stretch: '20%', | |
depth: 200, | |
modifier: 1, | |
slideShadows: true, | |
} | |
}); | |
</script> | |
<script id="jsbin-source-css" type="text/css">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 { | |
width: 100%; | |
padding-top: 50px; | |
padding-bottom: 50px; | |
} | |
.swiper-slide { | |
background-position: center; | |
background-size: cover; | |
width: 300px; | |
height: 300px; | |
} | |
.swiper-slide img { | |
display: block; | |
width: 100%; | |
}</script> | |
<script id="jsbin-source-javascript" type="text/javascript">var swiper = new Swiper(".mySwiper", { | |
effect: "coverflow", | |
grabCursor: true, | |
centeredSlides: true, | |
slidesPerView: "auto", | |
loop: true, | |
navigation:true, | |
coverflowEffect: { | |
rotate: 0, | |
stretch: '20%', | |
depth: 200, | |
modifier: 1, | |
slideShadows: true, | |
} | |
});</script></body> | |
</html> |
This file contains 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
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 { | |
width: 100%; | |
padding-top: 50px; | |
padding-bottom: 50px; | |
} | |
.swiper-slide { | |
background-position: center; | |
background-size: cover; | |
width: 300px; | |
height: 300px; | |
} | |
.swiper-slide img { | |
display: block; | |
width: 100%; | |
} |
This file contains 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
var swiper = new Swiper(".mySwiper", { | |
effect: "coverflow", | |
grabCursor: true, | |
centeredSlides: true, | |
slidesPerView: "auto", | |
loop: true, | |
navigation:true, | |
coverflowEffect: { | |
rotate: 0, | |
stretch: '20%', | |
depth: 200, | |
modifier: 1, | |
slideShadows: true, | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment