Skip to content

Commit

Permalink
added example page
Browse files Browse the repository at this point in the history
  • Loading branch information
sekmenhuseyin committed Apr 4, 2017
1 parent cb40ef3 commit d02f175
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 0 deletions.
Binary file added dist/images/pic1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist/images/pic2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist/images/pic3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 29 additions & 0 deletions dist/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!-- bxSlider CSS file -->
<link href="jquery.bxslider.css" rel="stylesheet" />

<ul class="bxslider">
<li><img src="images/pic1.jpg" /></li>
<li><img src="images/pic2.jpg" /></li>
<li><img src="images/pic3.jpg" /></li>
<li><img src="images/pic1.jpg" /></li>
<li><img src="images/pic2.jpg" /></li>
</ul>

<!-- jQuery library -->
<script src="jquery-3.1.1.min.js"></script>
<!-- bxSlider Javascript file -->
<script src="jquery.bxslider.js"></script>
<script>
$(document).ready(function(){
$('.bxslider').bxSlider({
mode: 'horizontal',
moveSlides: 1,
slideMargin: 40,
infiniteLoop: true,
slideWidth: 660,
minSlides: 3,
maxSlides: 3,
speed: 800,
});
});
</script>

0 comments on commit d02f175

Please sign in to comment.