Touch swipe image slider/slideshow/gallery/carousel/banner mobile responsive bootstrap
Branch: master
Clone or download
1
Latest commit 15314cb Sep 8, 2018
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
demos-jquery 27.2.0 Jul 3, 2018
demos 27.2.0 Jul 3, 2018
examples-jquery 27.3.0 Jul 14, 2018
examples 27.3.0 Jul 14, 2018
img 27.3.0 Jul 14, 2018
js version 27.5.0 Sep 1, 2018
skin 25.3.1 Aug 20, 2017
svg/loading/static-svg 25.3.1 Aug 20, 2017
transitions version 27.5.0 Sep 1, 2018
.gitattributes file arrangement Feb 4, 2018
.gitignore git remote add origin https://github.com/jssor/slider.js.git Dec 14, 2013
LICENSE.txt Create LICENSE.txt Sep 8, 2018
README.md 27.2.0 Jul 3, 2018
bower.json version 27.5.0 Sep 1, 2018
component.json version 27.5.0 Sep 1, 2018
package.json version 27.5.0 Sep 1, 2018
terms-of-use.txt update readme, add terms-of-use.txt Aug 27, 2017

README.md

Responsive Javascript Image/Text Slider/Slideshow/Gallery/Carousel/HTML5 Ad

  1. Live Demo
  2. https://www.jssor.com/development
  3. Slides HTML Code
  4. API: Options
  5. API: Methods, Properties & Events
  6. API: UI Definition
  7. https://www.jssor.com/help
  8. https://www.jssor.com/tutorial
  9. Support: Ask a question on StackOverflow

Example

<script src="jssor.slider.min.js"></script>
<div id="jssor_1" style="position:relative;top:0px;left:0px;width:980px;height:380px;overflow:hidden;">
    <div data-u="slides" style="position:absolute;top:0px;left:0px;width:980px;height:380px;overflow:hidden;">
        <div><img data-u="image" src="image1.jpg" /></div>
        <div><img data-u="image" src="image2.jpg" /></div>
    </div>
</div>
<script>
    var options = { $AutoPlay: 1 };
    var jssor_1_slider = new $JssorSlider$("jssor_1", options);
</script>