New Post has been published on Html Use
New Post has been published on http://www.htmluse.com/tonjoo-responsive-slideshow/
Tonjoo Responsive Slideshow
Tonjoo is a Beautiful jQuery slideshow that helps you to create a modern responsive image carousel/slideshow with lots of customization options.
Responsive across different device sizes.
Endless horizontal or vertical slide animations.
Autoplay and pause on hover.
Bullets and arrows navigation.
Image loader with jQuery imageloaded plugin.
Touch swipe and mouse drag supported.
Cross browser. Supports all the modern browsers and IE7+.
1. INCLUDE CSS AND JS FILES
<link rel="stylesheet" href="assets/css/frs.css" type="text/css" media="all"> <link rel="stylesheet" href="skins/frs-skin-default.css" type="text/css" media="all"> <script type="text/javascript" src="assets/js/jquery.js"></script> <script type="text/javascript" src="assets/js/jquery-migrate.min.js"></script> <script type="text/javascript" src="assets/js/jquery.touchSwipe.min.js"></script> <script type="text/javascript" src="assets/js/imagesloaded.min.js"></script> <script type="text/javascript" src="assets/js/frs.js"></script>
<div class='frs-slideshow-container' id='frs-example'> <div class='frs-slide-img-wrapper' style='display:none;'> <div class='frs-slide-img'><img src='slide-1.jpg' /></div> <div class='frs-slide-img'><img src='slide-2.jpg' /></div> <div class='frs-slide-img'><img src='slide-3.jpg' /></div> <div class='frs-slide-img'><img src='slide-4.jpg' /></div> <div class='frs-slide-img'><img src='slide-5.jpg' /></div> </div> </div>
jQuery(document).ready(function($) $('#frs-example').frs(); );
'animation': 'horizontal-slide', // horizontal-slide, vertical-slide, fade 'animationSpeed': 600, // how fast animtions are 'timer': false, // true or false to have the timer 'advanceSpeed': 4000, // if timer is enabled, time between transitions 'pauseOnHover': true, // if you hover pauses the slider 'startClockOnMouseOut': false, // if clock should start on MouseOut 'startClockOnMouseOutAfter': 1000, // how long after MouseOut should the timer start again 'directionalNav': true, // manual advancing directional navs 'bullets': false, // true or false to activate the bullet navigation 'bulletThumbs': false, // thumbnails for the bullets 'bulletThumbLocation': '', // location from this file where thumbs will be 'afterSlideChange': function () , // empty function 'skinClass': 'default', 'width': 650, 'height': 350, 'sbullets': false, 'sbulletsItemWidth': 200, 'continousSliding': false, 'jsOnly': false, 'slideParameter': []