Mobile friendly Carousel Slideshow Plugin With jQuery Bootstrap - Download Mobile-friendly Carousel / Slideshow Plugin With jQuery And Bootstrap

Download Mobile-friendly Carousel / Slideshow Plugin With jQuery And Bootstrap

Posted on

This time I will share jQuery Plugin and tutorial about Mobile-friendly Carousel / Slideshow Plugin With jQuery And Bootstrap, hope it will help you in programming stack.

Mobile friendly Carousel Slideshow Plugin With jQuery Bootstrap - Download Mobile-friendly Carousel / Slideshow Plugin With jQuery And Bootstrap
File Size: 10.2 KB
Views Total: 6435
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   

Bootstrap Touch Slider is a jQuery plugin used to enhance the default Bootstrap carousel component with additional features like touch events support, slide/fade animations and CSS3 animated slide text.

How to use it:

1. Make sure you first have jQuery library and Bootstrap framework installed in the web project.

1 <link href="/path/to/bootstrap.min.css" rel="stylesheet">
2 <script src="/path/to/jquery.min.js"></script>
3 <script src="/path/to/bootstrap.min.js"></script>

2. Load the jQuery touchSwipe plugin in the document.

1 <script src="/path/to/jquery.touchSwipe.min.js"></script>

3. Load the Animate.css in the head section that will provide the CSS3 animations for your slide text.

1 <link href="/path/to/animate.min.css" rel="stylesheet">

4. You might also need to load the Font Awesome for the navigation icons.

1 <link href="/path/to/font-awesome.min.css" rel="stylesheet">

5. You might also need to load the Font Awesome for the navigation icons. If you want to change ‘#bootstrap-touch-slider’ id then you have to change ‘Carousel-indicators’ and ‘Carousel-Control’ ‘#bootstrap-touch-slider’ slide as well.

01 <div id="bootstrap-touch-slider" class="carousel bs-slider fade control-round indicators-line"
02      data-ride="carousel"
03      data-pause="hover"
04      data-interval="false" >
05  
06   <!-- Indicators -->
07   <ol class="carousel-indicators">
08     <li data-target="#bootstrap-touch-slider" data-slide-to="0" class="active"></li>
09     <li data-target="#bootstrap-touch-slider" data-slide-to="1"></li>
10     <li data-target="#bootstrap-touch-slider" data-slide-to="2"></li>
11   </ol>
12  
13   <!-- Wrapper For Slides -->
14   <div class="carousel-inner" role="listbox">
15  
16     <!-- Third Slide -->
17     <div class="item active">
18  
19       <!-- Slide Background -->
20       <img src="1.jpg" alt="Bootstrap Touch Slider"  class="slide-image"/>
21       <div class="bs-slider-overlay"></div>
22  
23       <div class="container">
24         <div class="row">
25           <!-- Slide Text Layer -->
26           <div class="slide-text slide_style_left">
27               <h1 data-animation="animated zoomInRight">Slide Text</h1>
28           </div>
29         </div>
30       </div>
31     </div>
32     <!-- End of Slide -->
33  
34     <!-- Second Slide -->
35      <div class="item active">
36  
37       <!-- Slide Background -->
38       <img src="2.jpg" alt="Bootstrap Touch Slider"  class="slide-image"/>
39       <div class="bs-slider-overlay"></div>
40  
41       <div class="container">
42         <div class="row">
43           <!-- Slide Text Layer -->
44           <div class="slide-text slide_style_left">
45               <h1 data-animation="animated zoomInRight">Slide Text</h1>
46           </div>
47         </div>
48       </div>
49     </div>
50     <!-- End of Slide -->
51  
52     <!-- Third Slide -->
53     <div class="item active">
54  
55       <!-- Slide Background -->
56       <img src="3.jpg" alt="Bootstrap Touch Slider"  class="slide-image"/>
57       <div class="bs-slider-overlay"></div>
58  
59       <div class="container">
60         <div class="row">
61           <!-- Slide Text Layer -->
62           <div class="slide-text slide_style_left">
63               <h1 data-animation="animated zoomInRight">Slide Text</h1>
64           </div>
65         </div>
66       </div>
67     </div>
68     <!-- End of Slide -->
69  
70