forked from qwerty/tupali
65 lines
1.6 KiB
HTML
65 lines
1.6 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Slick Playground</title>
|
||
|
<meta charset="UTF-8">
|
||
|
<link rel="stylesheet" type="text/css" href="./slick/slick.css">
|
||
|
<link rel="stylesheet" type="text/css" href="./slick/slick-theme.css">
|
||
|
<link rel="stylesheet" type="text/css" href="./slick/style.css">
|
||
|
|
||
|
<style type="text/css">
|
||
|
|
||
|
|
||
|
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<hr/>
|
||
|
<h2>Slider Syncing</h2>
|
||
|
<div class="slider slider-for1">
|
||
|
<div><img data-lazy="http://placehold.it/350x300?text=1-350w" data-srcset="http://placehold.it/650x300?text=1-650w 650w, http://placehold.it/960x300?text=1-960w 960w" data-sizes="100vw"></div>
|
||
|
<div><h3>2</h3></div>
|
||
|
<div><h3>3</h3></div>
|
||
|
<div><h3>4</h3></div>
|
||
|
<div><h3>5</h3></div>
|
||
|
</div>
|
||
|
<div class="slider slider-nav1">
|
||
|
<div><img data-lazy="http://placehold.it/350x300?text=1-350w" data-srcset="http://placehold.it/650x300?text=1-650w 650w, http://placehold.it/960x300?text=1-960w 960w" data-sizes="100vw"></div>
|
||
|
<div><h3>2</h3></div>
|
||
|
<div><h3>3</h3></div>
|
||
|
<div><h3>4</h3></div>
|
||
|
<div><h3>5</h3></div>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
<script src="https://code.jquery.com/jquery-2.2.0.min.js" type="text/javascript"></script>
|
||
|
<script src="./slick/slick.js" type="text/javascript" charset="utf-8"></script>
|
||
|
<script type="text/javascript">
|
||
|
$(document).on('ready', function() {
|
||
|
|
||
|
|
||
|
$('.slider-for1').slick({
|
||
|
slidesToShow: 1,
|
||
|
slidesToScroll: 1,
|
||
|
arrows: false,
|
||
|
fade: true,
|
||
|
asNavFor: '.slider-nav1'
|
||
|
});
|
||
|
$('.slider-nav1').slick({
|
||
|
slidesToShow: 3,
|
||
|
slidesToScroll: 1,
|
||
|
asNavFor: '.slider-for1',
|
||
|
dots: true,
|
||
|
centerMode: true,
|
||
|
focusOnSelect: true
|
||
|
});
|
||
|
|
||
|
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
</body>
|
||
|
</html>
|