Created
June 19, 2018 16:56
-
-
Save condor-bird/086b86d55ce3cd2f9c124069eba33294 to your computer and use it in GitHub Desktop.
Example slick jquery plugins
This file contains hidden or 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
<div class="slider"> | |
<div class="slide">your content</div> | |
<div class="slide">your content</div> | |
<div class="slide">your content</div> | |
<div> | |
<h1>ignore me</h1> | |
</div> | |
</div> | |
<script> | |
$(function(){ | |
$('.slider').slick({dots:true, slide: '.slide'}); | |
}) | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment