Skip to content

Instantly share code, notes, and snippets.

@magnet88jp
Created August 26, 2015 08:01
Show Gist options
  • Save magnet88jp/602be7c732ef737a55df to your computer and use it in GitHub Desktop.
Save magnet88jp/602be7c732ef737a55df to your computer and use it in GitHub Desktop.
owl.carousel.js sample ref: http://www.owlcarousel.owlgraphic.com/
<html>
<head>
<link rel="stylesheet" href="./assets/owl.carousel.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="./owl.carousel.min.js"></script>
<script>
$(document).ready(function(){
$(".owl-carousel").owlCarousel();
});
</script>
</head>
<body>
<h1>hello</h1>
<!-- Set up your HTML -->
<div class="owl-carousel">
<div> Your Content1 </div>
<div> Your Content2 </div>
<div> Your Content3 </div>
<div> Your Content4 </div>
<div> Your Content5 </div>
<div> Your Content6 </div>
<div> Your Content7 </div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment