Time does not stand still and with it progress. This also affected the Internet. You can already notice how the appearance of sites is changing; it is especially popular responsive design. And in this regard, quite a few new ones have appeared adaptive jquery sliders, galleries, carousels or similar plugins.
1. Responsive Horizontal Posts Slider

Adaptive horizontal carousel with detailed instructions on installation. It is made in a simple style, but you can style it to suit yourself.

2. Slider on Glide.js

This slider is suitable for any website. It uses open source Glide.js. The slider colors can be easily changed.

3. Tilted Content Slideshow

Responsive content slider. The highlight of this slider is the 3D effect of the images, as well as different animations of random appearance.

4. Slider using HTML5 canvas

A very beautiful and impressive slider with interactive particles. It was made using HTML5 canvas,

5. Image Morphing Slider

Slider with a morphing effect (Smooth transformation from one object to another). IN in this example The slider is well suited for the portfolio of a web developer or web studio in the form of a portfolio.

6. Circular slider

Slider in the form of a circle with the effect of flipping the image.

7. Slider with blurred background

Adaptive slider with switching and background blur.

8. Responsive fashion slider

Simple, lightweight and responsive website slider.

9. Slicebox - jQuery 3D image slider(UPDATED)

Updated version of Slicebox slider with fixes and new features.

10.Free Animated Responsive Image Grid

JQuery plugin to create a flexible image grid that will switch shots using different animations and timings. This can look good as a background or decorative element on a website, as we can selectively appear new images and their transitions. The plugin comes in several versions.

11.Flex slider

A universal free plugin for your website. This plugin comes in several slider and carousel options.

12. Photo frame

Fotorama is a universal plugin. It has many settings, everything works quickly and easily, and you can view slides in full screen. The slider can be used both in a fixed size and adaptive, with or without thumbnails, with or without circular scrolling, and much more.

P.S.I installed the slider several times and I think that it is one of the best

13. Free and adaptive 3D slider gallery with thumbnails.

Experimental gallery slider 3DPanelLayout with a grid and interesting animation effects.

14. Slider on css3

The adaptive slider is made using css3 with smooth appearance of content and light animation.

15. WOW Slider

WOW Slider is an image slider with amazing visual effects.

17. Elastic

Elastic slider with full responsiveness and slide thumbnails.

18. Slit

This is a full screen responsive slider using css3 animation. The slider is made in two versions. The animation is done quite unusually and beautifully.

19. Adaptive photo gallery plus

A simple free gallery slider with image loading.

20. Responsive Slider for WordPress

Adaptive free slider for WP.

21. Parallax Content Slider

Slider with parallax effect and control of each element using CSS3.

22. Slider with music link

Slider using open source code JPlayer. This slider resembles a presentation with music.

23. Slider with jmpress.js

The responsive slider is based on jmpress.js and will therefore allow you to add some interesting 3D effects to your slides.

24. Fast Hover Slideshow

Slide show with quick slide switching. Slides switch on hover.

25. Image Accordion with CSS3

Image accordion using css3.

26. A Touch Optimized Gallery Plugin

This is a responsive gallery that is optimized for touch devices.

27. 3D Gallery

3D Wall Gallery- created for Safari browser, where the 3D effect will be visible. If you look at it on another browser, the functionality will be fine but the 3D effect will not be visible.

28. Slider with pagination

Responsive slider with pagination using JQuery UI slider. The idea is to use a simple navigation concept. It is possible to rewind all images or slide-by-slide switching.

29.Image Montage with jQuery

Automatically arrange images depending on screen width. A very useful thing when developing a portfolio website.

30. 3D Gallery

A simple 3D circular slider using css3 and jQuery.

31. Full screen mode with 3D effect using css3 and jQuery

A slider with the ability to view images full screen with a beautiful transition.

This slider is easy to install and if you figure it out, you can easily configure it and achieve the desired result. For this slider to work, you only need a few elements, which we will now consider in order.

HTML markup

Everything is very simple here, you just need to add the UL list at the very beginning right after the tag body.

There are only three lines in the list li, that is, the slider is designed for 3 images, if you need more, then the first step is to add the required number of lines. Let's move on.

CSS styles

This is probably the most important part of the work, since how our slider will work depends on the CSS. Open your site's style file and add the following code to it.

Body_slides( list-style:none; margin:0; padding:0; z-index:-2; background:#000;) .body_slides, .body_slides:after( position: fixed; width:100%; height:100% ; top:0px; left:0px;) .body_slides:after ( content: ""; background: transparent url(images/pattern.png) repeat top left;).body_slides li( width:100%; height:100%; position:absolute; left:0; background-repeat:none; -webkit-animation: 18s linear infinite 0s; -o-animation: anim_slides 18s linear infinite 0s; -ms-animation: anim_slides 18s linear infinite 0s; animation: anim_slides 18s linear infinite 0s; 1.jpg) ) .body_slides li:nth-child(2)( -webkit-animation-delay: 6.0s; -moz-animation-delay: 6.0s; background-image: url(images/2.jpg) ) . body_slides li:nth-child(3)( -webkit-animation-delay: 12.0s; -moz-animation-delay: 12.0s; background-image: url(images/3.jpg) ) @-webkit-keyframes anim_slides ( 0% (opacity:0;) 6% (opacity:1;) 24% (opacity:1;) 30% (opacity:0;) 100% (opacity:0;) ) @-moz-keyframes anim_slides ( 0% (opacity:0;) 6% (opacity:1;) 24% (opacity:1;) 30% (opacity:0;) 100% (opacity:0;) )

If you understand CSS, then it will not be difficult for you to understand what is responsible for what. I’ll tell you the minimum, because there’s no point in teaching CSS.

Our list with slides has a class body_slides. It is given styles for appearance and general settings.

Next we have a pseudo element - :after, which defines an additional layer and a pattern in the form of dots is superimposed on top of the background. This is done using the image to which the path is specified images/pattern.png. If you have a different path, please indicate it correctly.

.body_slides li:nth-child(1)- this is the first slide in order and is assigned background picture. Next comes nth-child(2), in addition to the picture, it is given another time and is equal to 6 seconds. That is, it will appear 6 seconds after the first slide. Next is nth-child(3), it will appear in another six seconds, so it has a time of 12 seconds. If you need to add a 4th slide, then add nth-child(4) and it should already have a time of 18 seconds. I think this is clear.

Next you need to specify the full animation time, it is now set in body_slides and equals 18 seconds. If you add 4 slides it will be equal to 24 and so on. If you are good at mathematics, you should be able to handle it, the main thing is not to make mistakes because the slider will not work at all. If desired, you can speed up or slow down by setting the desired time.

keyframes anim_slides- this is the appearance and disappearance of the slide. Initially, the slide is transparent and it is given the condition - opacity:0;. When it is the turn of any of the slides, it first appears, and then begins to become transparent again and completely disappears, and a new one appears in its place. If you want to change the speed of appearance or disappearance, change the percentage - this is a percentage of the total time.

The rest of the settings are according to desire and need - general background, now black, path to pictures, positioning, layer level, etc. The advantage of this slider is that it is simple and does not use scripts and entire libraries, if it were made using - jQuery. I really hope that if you wanted a change background pictures then this CSS slider will help you.

That's all, thanks for your attention. 🙂

1. Excellent jQuery Slideshow

A large, spectacular slideshow using jQuery technologies.

2. jQuery plugin “Scale Carousel”

Scalable slideshow using jQuery. You can set the slideshow sizes that suit you best.

3. jQuery plugin “slideJS”

Image slider with text description.

4. Plugin “JSliderNews”

5. CSS3 jQuery slider

When you hover over the navigation arrows, a circular thumbnail of the next slide appears.

6. Nice jQuery “Presentation Cycle” slider

jQuery slider with image loading indicator. Automatic slide changing is provided.

7. jQuery plugin “Parallax Slider”

Slider with a volumetric background effect. The highlight of this slider is the movement of the background, which consists of several layers, each of which scrolls at a different speed. The result is an imitation of the volumetric effect. It looks very beautiful, you can see for yourself. The effect is displayed more smoothly in browsers such as Opera, Google Chrome,IE.

8. Fresh, lightweight jQuery slider “bxSlider 3.0”

On the demo page in the “examples” section you can find links to all possible options using this plugin.

9. jQuery image slider, “slideJS” plugin

A stylish jQuery slider can certainly decorate your project.

10. jQuery slideshow plugin “Easy Slides” v1.1

Easy to using JQuery plugin for creating slideshows.

11. jQuery Slidy plugin

Lightweight jQuery plugin in various versions. Automatic slide changing is provided.

12. jQuery CSS gallery with automatic slide changing

If the visitor does not click on the “Forward” or “Back” arrows within a certain time, the gallery will begin to scroll automatically.

13. jQuery slider “Nivo Slider”

Very professional, high-quality, lightweight plugin with valid code. There are many different slide transition effects available.

14. jQuery slider “MobilySlider”

Fresh slider. jQuery slider with various image changing effects.

15. jQuery Plugin “Slider²”

Lightweight slider with automatic slide changer.

16. Fresh javascript slider

Slider with automatic image change.

Plugin for implementing slide shows with automatic slide changing. It is possible to control the display using image thumbnails.

jQuery CSS image slider using the NivoSlider plugin.

19. jQuery slider “jShowOff”

Plugin for content rotation. Three options for use: without navigation (with automatic change in slide show format), with navigation in the form of buttons, with navigation in the form of image thumbnails.

20. Shutter Effect Portfolio plugin

Fresh jQuery plugin for designing a photographer's portfolio. The gallery has an interesting effect of changing images. Photos follow each other with an effect similar to the operation of a lens shutter.

21. Lightweight javascript CSS slider “TinySlider 2”

Implementation of an image slider using javascript and CSS.

22. Awesome slider “Tinycircleslider”

Stylish round slider. The transition between images is carried out by dragging the slider in the form of a red circle around the circumference. It will fit perfectly into your website if you use round elements in your design.

23. Image slider with jQuery

Lightweight slider “Slider Kit”. The slider is available in different designs: vertical and horizontal. Also implemented various types navigation between images: using the “Forward” and “Back” buttons, using the mouse wheel, using the mouse click on the slide.

24. Gallery with miniatures “Slider Kit”

Gallery "Slider Kit". Scrolling of thumbnails is carried out both vertically and horizontally. The transition between images is carried out using: the mouse wheel, mouse click or hovering the cursor over the thumbnail.

25. jQuery content slider “Slider Kit”

Vertical and horizontal content slider using jQuery.

26. jQuery slideshow “Slider Kit”

Slideshow with automatic slide changing.

27. Lightweight professional javascript CSS3 slider

A neat jQuery and CSS3 slider created in 2011.

jQuery slideshow with thumbnails.

29. Simple jQuery slideshow

Slideshow with navigation buttons.

30. Awesome jQuery “Skitter” Slideshow

jQuery Skitter plugin for creating stunning slideshows. The plugin supports 22 (!) types of different animation effects when changing images. Can work with two slide navigation options: using slide numbers and using thumbnails. Be sure to watch the demo, a very high quality find. Technologies used: CSS, HTML, jQuery, PHP.

31. Slideshow “Awkward”

Functional slide show. Slides can be in the form of: simple images, images with captions, images with tooltips, videos. You can use arrows, slide number links, and left/right keys on your keyboard to navigate. The slide show comes in several versions: with and without thumbnails. To view all options, follow the links Demo #1 - Demo #6 located at the top of the demo page.

A very original design for the image slider, reminiscent of a fan. Animated slide transition. Navigation between images is carried out using arrows. There is also an automatic shift that can be turned on and off using the Play/Pause button located on the top.

Animated jQuery slider. Background images automatically scale as the browser window is resized. For each image, a block with a description appears.

34. “Flux Slider” slider using jQuery and CSS3

New jQuery slider. Several cool animated effects when changing slides.

35. jQuery plugin “jSwitch”

Animated jQuery gallery.

A lightweight jQuery slideshow with automatic slide changing.

37. New version of the plugin “SlideDeck 1.2.2”

Professional content slider. There are options with automatic slide change, as well as an option using the mouse wheel to move between slides.

38. jQuery slider “Sudo Slider”

Lightweight image slider using jQuery. There are a lot of implementation options: horizontal and vertical changing of images, with and without links to the slide number, with and without image captions, various image changing effects. There is an automatic slide change function. Links to all implementation examples can be found on the demo page.

39. jQuery CSS3 slideshow

Slideshow with thumbnails supports automatic slide changing mode.

40. jQuery slider “Flux Slider”

Slider with many image changing effects.

41. Simple jQuery slider

Stylish image slider using jQuery.