Skip to content

Instantly share code, notes, and snippets.

@condor-bird
Created June 19, 2018 16:56
Show Gist options
  • Save condor-bird/086b86d55ce3cd2f9c124069eba33294 to your computer and use it in GitHub Desktop.
Save condor-bird/086b86d55ce3cd2f9c124069eba33294 to your computer and use it in GitHub Desktop.
Example slick jquery plugins
<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