Search Google

Wednesday 20 August 2014

jquery slider plugins

best for carousels  http://coolcarousels.frebsite.nl/c/68/

best http://www.freshdesignweb.com/jquery-image-slider-slideshow.html

 

HTML
  1. <div id="wrapper">
  2. <div id="slider">
  3. <div class="slide" style="background-image: url(img/iceage.jpg);">
  4. <div class="slide-block">
  5. <h4>Ice Age</h4>
  6. <p>Heading south to avoid a bad case of global frostbite, a group of migrating misfit creatures embark on a hilarious quest to reunite a human baby with his tribe.</p>
  7. </div>
  8. </div>
  9.  
  10. <div class="slide" style="background-image: url(img/birds.jpg);">
  11. <div class="slide-block">
  12. <h4>For The Birds</h4>
  13. <p>For the Birds is an animated short film, produced by Pixar Animation Studios released in 2000. It is shown in a theatrical release of the 2001 Pixar feature film Monsters, Inc.</p>
  14. </div>
  15. </div>
  16.  
  17. <div class="slide" style="background-image: url(img/up.jpg);">
  18. <div class="slide-block">
  19. <h4>UP</h4>
  20. <p>A comedy adventure in which 78-year-old Carl Fredricksen fulfills his dream of a great adventure when he ties thousands of balloons to his house and flies away to the wilds of South America.</p>
  21. </div>
  22. </div>
  23.  
  24. </div>
  25. </div>
JavaScript
  1. $(function() {
  2. $('#slider').carouFredSel({
  3. width: '100%',
  4. align: false,
  5. items: 3,
  6. items: {
  7. width: $('#wrapper').width() * 0.15,
  8. height: 500,
  9. visible: 1,
  10. minimum: 1
  11. },
  12. scroll: {
  13. items: 1,
  14. timeoutDuration : 5000,
  15. onBefore: function(data) {
  16.  
  17. // find current and next slide
  18. var currentSlide = $('.slide.active', this),
  19. nextSlide = data.items.visible,
  20. _width = $('#wrapper').width();
  21.  
  22. // resize currentslide to small version
  23. currentSlide.stop().animate({
  24. width: _width * 0.15
  25. });
  26. currentSlide.removeClass( 'active' );
  27.  
  28. // hide current block
  29. data.items.old.add( data.items.visible ).find( '.slide-block' ).stop().fadeOut();
  30.  
  31. // animate clicked slide to large size
  32. nextSlide.addClass( 'active' );
  33. nextSlide.stop().animate({
  34. width: _width * 0.7
  35. });
  36. },
  37. onAfter: function(data) {
  38. // show active slide block
  39. data.items.visible.last().find( '.slide-block' ).stop().fadeIn();
  40. }
  41. },
  42. onCreate: function(data){
  43.  
  44. // clone images for better sliding and insert them dynamacly in slider
  45. var newitems = $('.slide',this).clone( true ),
  46. _width = $('#wrapper').width();
  47.  
  48. $(this).trigger( 'insertItem', [newitems, newitems.length, false] );
  49.  
  50. // show images
  51. $('.slide', this).fadeIn();
  52. $('.slide:first-child', this).addClass( 'active' );
  53. $('.slide', this).width( _width * 0.15 );
  54.  
  55. // enlarge first slide
  56. $('.slide:first-child', this).animate({
  57. width: _width * 0.7
  58. });
  59.  
  60. // show first title block and hide the rest
  61. $(this).find( '.slide-block' ).hide();
  62. $(this).find( '.slide.active .slide-block' ).stop().fadeIn();
  63. }
  64. });
  65.  
  66. // Handle click events
  67. $('#slider').children().click(function() {
  68. $('#slider').trigger( 'slideTo', [this] );
  69. });
  70.  
  71. // Enable code below if you want to support browser resizing
  72. $(window).resize(function(){
  73.  
  74. var slider = $('#slider'),
  75. _width = $('#wrapper').width();
  76.  
  77. // show images
  78. slider.find( '.slide' ).width( _width * 0.15 );
  79.  
  80. // enlarge first slide
  81. slider.find( '.slide.active' ).width( _width * 0.7 );
  82.  
  83. // update item width config
  84. slider.trigger( 'configuration', ['items.width', _width * 0.15] );
  85. });
  86.  
  87. });
CSS
  1. html, body {
  2. height: 100%;
  3. padding: 0;
  4. margin: 0;
  5. }
  6. body {
  7. background: #f9f9f3;
  8. }
  9. body * {
  10. font-family: Arial, Geneva, SunSans-Regular, sans-serif;
  11. font-size: 14px;
  12. color: #222;
  13. line-height: 20px;
  14. }
  15.  
  16. #wrapper {
  17. height: 100%;
  18. width: 100%;
  19. min-height: 650px;
  20. min-width: 900px;
  21. padding-top: 1px;
  22. }
  23. #slider {
  24. margin: 100px 0 0 0;
  25. height: 500px;
  26. overflow: hidden;
  27. background: url(img/ajax-loader.gif) center center no-repeat;
  28. }
  29.  
  30. #slider .slide {
  31. position: relative;
  32. display: none;
  33. height: 500px;
  34. float: left;
  35. background-position: center right;
  36. cursor: pointer;
  37. border-left: 1px solid #fff;
  38. }
  39.  
  40. #slider .slide:first-child {
  41. border: none;
  42. }
  43.  
  44. #slider .slide.active {
  45. cursor: default;
  46. }
  47.  
  48. #slider .slide-block {
  49. position: absolute;
  50. left: 40px;
  51. bottom: 75px;
  52. display: inline-block;
  53. width: 435px;
  54. background-color: #fff;
  55. background-color: rgba(255,255,255, 0.8);
  56. padding: 20px;
  57. font-size: 14px;
  58. color: #134B94;
  59. border: 1px solid #fff;
  60. overflow: hidden;
  61. border-radius: 4px;
  62. }
  63.  
  64. #slider .slide-block h4 {
  65. font-size: 36px;
  66. font-weight: bold;
  67. margin: 0 0 10px 0;
  68. line-height: 1;
  69. }
  70. #slider .slide-block p {
  71. margin: 0;
  72. http://www.typicallyspanish.com/royalslider/templates/video-gallery/ 
     
    http://www.cssauthor.com/best-jquery-slider-plugins/ 

COIN SLIDER – jQuery Image Slider with Unique Effects

COIN SLIDER - jQuery Image Slider with Unique Effects
COIN SLIDER – jQuery image slider plugin with more unique transitions effects. Coin Slider have lot of features that jqFancyTransitions.

 

 http://thedesignhill.com/jquery-image-and-content-sliders/

Apple-style Slideshow Gallery With CSS & jQuery

6.jquery-image-and-content-slider-pluginDemo | Source

Responsive Image Gallery with Thumbnail Carousel

7.jquery-image-and-content-slider-pluginDemo | Source

Full Width Image Slider

9.jquery-image-and-content-slider-pluginDemo | Source

Elastic Content Slider

10.jquery-image-and-content-slider-pluginDemo | Source

Fullscreen Slit Slider

11.jquery-image-and-content-slider-pluginDemo | Source

Swift Content Navigation

12.jquery-image-and-content-slider-pluginDemo | Source

Vertical Showcase Slider

13.jquery-image-and-content-slider-pluginDemo | Source

Triple Panel Image Slider

14.jquery-image-and-content-slider-pluginDemo | Source

Parallax Content Slider

15.jquery-image-and-content-slider-pluginDemo | Source

Elastic Image Slideshow

jquery-image-and-content-slider-pluginDemo | Source

Rotating Image Slider

17.jquery-image-and-content-slider-pluginDemo | Source

3D Wall Gallery

18.jquery-image-and-content-slider-pluginDemo | Source

Thumbnails Preview Gallery

19.jquery-image-and-content-slider-pluginDemo | Source

zAccordion

20.jquery-image-and-content-slider-plugin
Demo | Source

Parallax Slider With jQuery

21.jquery-image-and-content-slider-pluginDemo | Source

Portfolio Zoom Slider

22.jquery-image-and-content-slider-pluginDemo | Source

Animated Portfolio Gallery

23.jquery-image-and-content-slider-pluginDemo | Source

Tiny Circle Slider

24.jquery-image-and-content-slider-pluginDemo | Source

Slider Gallery With jQuery

25.jquery-image-and-content-slider-pluginDemo | Source

Photostack Gallery with jQuery and CSS3

26.jquery-image-and-content-slider-pluginDemo | Source

Simple Content Slider

27.jquery-image-and-content-slider-pluginDemo | Source

AD Gallery – a jQuery gallery plugin

28.jquery-image-and-content-slider-pluginDemo | Source

Pikachoose

29.jquery-image-and-content-slider-plugin

 

 

 

 

 http://designscrazed.net/best-free-jquery-plugins/

 

Flat jQuery Price Slider

This jQuery price slider to select range of prices which help you vastly in your development and design projects. This price range slider is totally free to download.
Examples|Download price-slider

FooTable Plugin

A free jquery plugin which can showcase your html tables in responsive. Get your old tables look good in mobiles, tablets etc for free.
Demo | Source footable

Justified Gallery

The best jquery plugin for 2014 as this is a must have plugin for all theme makers. The plugin makes your gallery adapt to any screen resolution by justifying the gallery layouts, resizing wherever necessary to display the whole gallery properly. You can find how plugin works by resziign the browser window.
Source justified gallery

Clock-style timepicker

ClockPicker was designed for Bootstrap in the beginning. So Bootstrap (and jQuery) is the only dependency(s).
Demo | Source clock jquery

Slidebars

Slidebars was born from a reoccurring need to create off-canvas sliding mobile menus for responsive design. Slidebars is a jQuery plugin for quickly and easily implementing app-style revealing, overlaying, push menus and sidebars into your website.
Demo | Source slidebars

Gmaps jQuery Map Plugin

Gmaps js script is simple in itself with minimal code and clean documentation to implement the code all by yourself. The power of Google maps now can be harvested with this cool jQuery plugin without any limits. Choose from 25 Different features starting from basic map layout to Street View Panoramas.
Examples|Download fusion-table-leyers

FormChimp - MailChimp ajax plugin for jQuery

A customizable MailChimp ajax plugin for jQuery, provides an easy and lightweight way to let your users sign up to your MailChimp list.
Examples|Download

No comments:

Post a Comment