Menu
Is free
registration
home  /  Firmware/ Responsive css content slider. Responsive slider in CSS3

Responsive css content slider. Responsive slider in CSS3

In this tutorial, we will create a simple responsive page with a heading decorated with a carousel in which images slide from right to left. Our solution does not use JavaScript, the slideshow is based on CSS3 animations that are supported in most modern browsers: Firefox 15+, Chrome 22+, Safari 5.1+, Opera 12.1+ and IE10.

Step 1 - Preparatory

We will need 4 large images (in our example, the size is 1200px x 390px). For the horizontal slider, we'll prepare a 4800px x 390px image in Photoshop, place all our images horizontally one after the other and save the result in a web-friendly format (“ slider-horizontal.jpg”).

Step 2 - HTML

We will actually animate the background-position property for our title. The header itself has very simple markup:

L "ile de Batz

The complete page code looks like this:

L "ile de Batz

Once upon a time ...

Aenean lacinia bibendum ...

Links to learn by heart ..

Step 3. CSS for mobile devices

We will start defining styles for mobile devices. Let's set the design base and then add template extensions for large screens. In the text of the lesson, only the basic properties are given, the full code can be viewed in the source:

Body (width: 90%; min-width: 300px; max-width: 1200px; margin: 0 auto; padding-top: 1em; color: # 504331) header (text-align: center; position: relative;) h1 ( font-size: 2.75em; background: white; display: inline-block; padding: 0 10px; margin-bottom: .25em;) h1: after (content: ""; height: 2px; display: block; position: absolute ; left: 0; right: 0; top: .5em; z-index: -1; border-top: 1px solid # 504331; border-bottom: 1px solid # 504331;) .links (background: url (../ images / map.png) bottom center no-repeat; padding-bottom: 177px;)

Step 4. Styles for large screens

On large screens sections .main and .screen should be displayed differently. Section .link will be 300px wide and positioned as the right sidebar, and the section .main will remain on the left. We will also add a double line to separate the sections. We will use the @media query to determine the screen width larger than 1024px:

@media only screen and (min-width: 1024px) (.content (position: relative;) .main (margin-right: 320px; padding: .5em 20px .5em 0; / * add a double line * / border-right : 1px solid # 504331; box-shadow: 2px 0 white, 3px 0 # 504331;) .links (position: absolute; right: 0; top: 0; width: 300px; text-align: right;))

Step 5: responsive header images

Let's start working on the main part of our tutorial: a responsive CSS slider in the header. First, let's make the background image responsive.

Header (background: url (../ images / slider-horizontal.jpg) 0 bottom repeat-x; background-size: 400%; padding-bottom: 32.5%;)

Using two values ​​expressed as a percentage (400% for the property background-size and 32.5% for bottom padding) the title background will be displayed correctly regardless of the screen size.

Why 400%? We have 4 slides, so it will display 1/4 of the background image in the header. That is, the background size should be 4 times wider than the title.

Why 32.5%? We position our background at the bottom of the header. The background image's height is 390px, the width of an individual slide is 1200px, 390/1200 = 0.325, so the height is 32.5% of the width.

Step 6. Animation

We will animate the property background-position... To display the second image property background-position should matter 33.33333% bottom, third - 66.66667% bottom and the fourth is 100% bottom... The first image is displayed with a property value background-position equal 0 bottom or 133.33333% bottom(we set repetitions to repeat-x).

Each image has 25% of the "glory" time. The first is displayed from 0 to 25%, the second from 25% to 50%, the third from 50% to 75%, and the last from 75% to 100%. We set the transitions so that the image starts to slide out a little earlier (use a value of 5%) before 25% of its output time has elapsed. This is how it looks @keyframes:

@keyframes h_slide (0% (background-position: 0% bottom;) 20% (background-position: 0% bottom;) 25% (background-position: 33.33333% bottom;) 45% (background-position: 33.33333% bottom ;) 50% (background-position: 66.66667% bottom;) 70% (background-position: 66.66667% bottom;) 75% (background-position: 100% bottom;) 95% (background-position: 100% bottom;) 100% (background-position: 133.33% bottom;))

Note that you need to add the browser prefixes: @ -webkit-keyframes (for Chrome, Safari, iOS Safari, Android) and @ -moz-keyframes (for Firefox 15).

Following is the complete header code. Our “h_slide” animation repeats every 24 seconds (6 seconds for each slide) in an endless loop. Time function matters ease-out so that each slide slows down at the end of the transition.

Header (text-align: center; position: relative; background: url (../ images / slider-horizontal.jpg) 0 bottom repeat-x; background-size: 400%; padding-bottom: 32.5%; -webkit- animation: h_slide 24s ease-out infinite; -moz-animation: h_slide 24s ease-out infinite; animation: h_slide 24s ease-out infinite;)

Currently, the slider - carousel - functionality that you just need to have on a website for a business, a website - portfolio or any other resource. Along with full screen image sliders, horizontal carousel sliders fit well into any web design.

Sometimes the slider should take up one third of the site page. Here the carousel slider is used with transition effects and responsive layouts. E-commerce sites use a carousel slider to showcase multiple photos in individual posts or pages. The slider code can be freely used and changed according to your needs.

Using JQuery together with HTML5 and CSS3, you can make your pages more interesting by providing them with unique effects, and draw the attention of visitors to a specific area of ​​the site.

Slick - modern slider plugin - carousel

Slick Is a free jquery plugin whose developers claim that their solution will satisfy all your slider requirements. Adaptive slider - carousel can work in the " tiles"For mobile devices, and, in the" drag and drop"For the desktop version.

Contains the transition effect " decay", An interesting opportunity" center mode», Lazy loading of images with auto-scrolling. The updated functionality includes adding slides and a slide filter. Everything so that you can customize the plugin according to your requirements.

Owl Carousel 2.0 - jQuery - touch-friendly plugin

This plugin has a wide range of functions in its arsenal, suitable for both beginners and experienced developers. This is an updated version of the carousel slider. Its predecessor was named exactly the same.

The slider contains some built-in plugins to improve the overall functionality. Animation, video playback, slider autoplay, lazy loading, automatic height adjustment are the main features.

Support capabilities drag and drop included for more convenient use of the plugin on mobile devices.
The plugin is perfect for displaying large images even on small screens of mobile devices.

Quite small, but rich in functionality jquery plugin that allows you to place a slider on the page - a carousel that has a small core and does not consume a lot of site resources. The plugin can be used to display vertical and horizontal sliders, animations and create sets of images from the gallery.

AnoSlide - Ultra compact responsive jQuery slider

Ultra compact jQuery slider- carousel, the functionality of which is much more than that of a regular slider. It includes single image preview, multi-image carousel display, and title-based slider.

Owl Carousel - Jquery Slider - Carousel

- slider with support for touch screens and technology drag and drop easily integrated into Html- code. The plugin is one of the best sliders that allows you to create beautiful carousels without any specially prepared markup.

3D gallery - carousel

Uses 3D- transitions based on CSS- styles and a little Javascript code.

Great 3D carousel. It looks like this is still a beta version, because I discovered a couple of problems with it right now. If you are interested in testing and creating your own sliders this carousel will be of great help.

Carousel using bootstrap

Responsive Slider - A carousel using technology just right for your new website.

Based on Bootstrap - Moving Box carousel slider framework

Most requested on portfolio and business sites. This type of carousel slider is often found on any type of site.

This tiny slider is ready to work on devices with any screen resolution. The slider can work in both circular and carousel modes. Tiny circle presented as an alternative to other sliders of a similar type. There is built-in support for operating systems IOS and Android.

The slider looks pretty interesting in circular mode. Method support is excellently implemented drag and drop and an automatic slide scrolling system.

Powerful, responsive, carousel slider is perfect for a modern website. Works correctly on any device. Has horizontal and vertical modes. Its size is minimized to just 1 KB. The ultra compact plugin also has excellent smooth transitions.

Wow - slider - carousel

Contains over 50 effects that can help you create an original slider for your website.

Resize your browser window to see how the slider adapts. Bxslider comes with over 50 customization options and showcases its features with various transition effects.

jCarousel - jQuery plugin that will help organize the viewing of your images. You can easily create custom carousel images from the framework shown in the example. The slider is responsive and optimized to work on mobile platforms.

Scrollbox - jQuery plugin

Scrollbox compact plug-in for creating a slider - carousel or text scrolling line. Key features include vertical and horizontal scrolling with pause on mouse over.

Simple slider - carousel. If you want a fast plugin, this one is 100% good. Comes only with the basic functions required for the slider to work.

Flexisel: Responsive JQuery Slider Plugin - Carousel

The creators took inspiration from the old school plugin, making a copy of it focused on the correct operation of the slider on mobile and tablet devices.

A responsive layout, when working on mobile devices, differs from a layout oriented to the size of the browser window. perfectly adapted to work on screens, both low and high resolution.

Elastislide - responsive slider - carousel

Perfectly adapts to the screen size of the device. You can set the minimum number of images to display at a specific resolution. Works well as an image gallery carousel slider, using a fixed wrapper in conjunction with a vertical scrolling effect.

Freely redistributable slider from Woothemes... It is considered one of the best responsive sliders. The plugin contains several templates and will be useful for both novice users and experts.

Amazing carousel

Amazing carousel- responsive image slider on jQuery... Supports many site management systems such as WordPress, Drupal and Joomla... Also supports Android and IOS and desktop operating systems without any compatibility issues. The built-in amazing carousel templates allow you to use the slider in vertical, horizontal and circular modes.

November 4, 2019 The entry has been updated

Yuri Nemets

Pure CSS sliders + bonus slider

CSS sliders have some advantages over Javascript sliders. One such advantage is download speed. Not only are images for sliders used in large sizes (if there is no optimization for different screens), but also some time is spent on loading scripts. But in the article you will only see pure CSS sliders.

Here's what I found on the site about sliders:

1.Css3 image slider

A CSS slider that uses radio buttons to navigate through slides. These radio buttons are located under the sliders. Also, in addition to the radio buttons, navigation is carried out using the arrows on the left and right. To keep track of which image is currently displayed, the: checked pseudo-classes are used.

2.Css3 thumbnail image slider

Unlike the previous CSS slider, here instead of radio buttons there are thumbnails of all images at the bottom, which is also useful when creating an image gallery. The images change with a peculiar effect: they smoothly disappear when enlarged.

3. CSS gallery

But this CSS slider is perfect for sales pages. As a rule, when developing landing pages (selling pages), many web developers place a slider at the very beginning, so that in the first screen (without scrolling) the visitor can immediately see all the benefits that this page has for him. Above all, this slider is responsive, which is also great.

4. CSS slider without links

Just want to note that this slider does not use links! By default, besides the main image (slide), 2 more slides are visible. They are located behind the main one. Changing slides takes place in a beautiful mode: first, two slides are moved apart and that slide becomes in the center, which then becomes the main one. The slide is then enlarged and placed in front of the others.

5. Responsive slider in CSS3

Another responsive slider with radio button controls. To see how this slider will look on different devices, you can either change the browser window yourself, or on the page with the slider there are special icons for different devices, by clicking on which you will see the slider will look on your computer, tablet or smartphone.

*** BONUS SLIDER ***

In addition to all the sliders that are presented above, I want to please you with one more. This slider is perfect for creating an image gallery. Words cannot explain what he does, so you better watch everything on the video:

Output

With the help of sliders, you can beautifully design image galleries, placing them more compactly, insert a slider into the first screen (the part of the page that is visible without scrolling) of the selling page to immediately show the visitor the main benefits that he will receive. You can still find a lot of ways where and how you can use sliders, but one thing is clear - they are useful when used correctly.

Items that were discussed in the article.

In this tutorial, we are going to make a great CSS3 slider. It will use a fade effect between slides. Additionally, you can use a description for each image. An unordered list will be used to organize the information. Slides will switch automatically using CSS3 animations.

HTML markup

The HTML markup is very simple. The example has four slides. Each one consists of an image (as a background) and description text in a div element. It is very easy to insert additional slides.

  • Description # 1
  • Description # 2
  • Description # 3
  • Description # 4

CSS

The slider uses anim_slides and anim_titles CSS3 animations. The first is used for individual slides, the second is for description text. Position and opacity are also changed for the description.

/ * Slider * / .slides (height: 300px; margin: 50px auto; overflow: hidden; position: relative; width: 900px;) .slides ul (list-style: none; position: relative;) / * Animation frames # anim_slides * / @ -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;)). slides ul li (opacity: 0; position: absolute; top: 0; / * css3 animation * / -webkit-animation-name: anim_slides; -webkit-animation-duration: 24.0s; -webkit-animation-timing-function: linear; -webkit-animation-iteration-count: infinite; -webkit-animation-direction: normal; -webkit-animation-delay: 0; -webkit-animation-play-state: running; -webkit-animation-fill-mode : forwards; -moz-animation-name: anim_slides; -moz-animation-duration: 24.0s; -moz-animation-timing-function: linear; -moz-animation-ite ration-count: infinite; -moz-animation-direction: normal; -moz-animation-delay: 0; -moz-animation-play-state: running; -moz-animation-fill-mode: forwards; ) / * Css3 delays * / .slides ul li: nth-child (2), .slides ul li: nth-child (2) div (-webkit-animation-delay: 6.0s; -moz-animation-delay: 6.0 s;) .slides ul li: nth-child (3), .slides ul li: nth-child (3) div (-webkit-animation-delay: 12.0s; -moz-animation-delay: 12.0s;). slides ul li: nth-child (4), .slides ul li: nth-child (4) div (-webkit-animation-delay: 18.0s; -moz-animation-delay: 18.0s;) .slides ul li img (display: block;) / * Animation frames #anim_titles * / @ -webkit-keyframes anim_titles (0% (left: 100%; opacity: 0;) 5% (left: 10%; opacity: 1;) 20% ( left: 10%; opacity: 1;) 25% (left: 100%; opacity: 0;) 100% (left: 100%; opacity: 0;)) @ -moz-keyframes anim_titles (0% (left: 100 %; opacity: 0;) 5% (left: 10%; opacity: 1;) 20% (left: 10%; opacity: 1;) 25% (left: 100%; opacity: 0;) 100% (left : 100%; opacity: 0;)) .slides ul li div (background-color: # 000000; border-radius: 10px 10px 10px 10px; box-shadow: 0 0 5px #FFFFFF inset; color: #FFF FFF; font-size: 26px; left: 10%; margin: 0 auto; padding: 20px; position: absolute; top: 50%; width: 200px; / * Animation css3 * / -webkit-animation-name: anim_titles; -webkit-animation-duration: 24.0s; -webkit-animation-timing-function: linear; -webkit-animation-iteration-count: infinite; -webkit-animation-direction: normal; -webkit-animation-delay: 0; -webkit-animation-play-state: running; -webkit-animation-fill-mode: forwards; -moz-animation-name: anim_titles; -moz-animation-duration: 24. 0s; -moz-animation-timing-function: linear; -moz-animation-iteration-count: infinite; -moz-animation-direction: normal; -moz-animation-delay: 0; -moz-animation-play-state: running; -moz-animation-fill-mode: forwards; )

C ollection of free HTML and CSS slider code examples: card, comparison, fullscreen, responsive, simple, etc. Update of June 2018 collection. 7 new items.

Table of Contents

Related Articles


About the code

A set of onboarding screens in HTML / CSS / JS. A personal experiment with layering PNG icons, CSS3 transitions, & flexbox.

HTML, CSS and JavaScript information card slider.
Made by Andy Tran
November 23, 2015

Photo slider working on desktop and mobile browsers.
Made by taron
September 29, 2014

Comparison (Before / After) Sliders


About the code

A simple and clean image comparison slider, fully responsive and touch ready made with CSS and jQuery.


About the code

A before and after slider with only html and css.


About the code

Playing around with a new idea using my two layer before / after image slider. Keeping it minimal. Keeping it vanilla. Like it if it "s useful :)

Vanilla JS, minimal, nice to look.
Made by Huw
July 3, 2017


About the code

A "split-screen" slider element with JavaScript.

A little experiment for a before & after slider all inside a SVG. Masking makes it pretty simple. Since it's all SVG, the images and captions scale nicely together. GreenSock's Draggable and ThrowProps plugins were used for the slider control.
Made by Craig Roblewsky
April 17, 2017

Uses customized range input for slider.
Made by Dudley Storey
October 14, 2016

Responsive image comparison slider with HTML, CSS and JavaScript.
Made by Ege Görgülü
August 3, 2016

HTML5, CSS3 and JavaScript video before-and-after comparison slider.
Made by Dudley Storey
April 24, 2016

A handy draggable slider to quickly compare 2 images, powered by CSS3 and jQuery.
Made by CodyHouse
September 15, 2014

Fullscreen Sliders

About the code

Simple slider based on radio inputs. 100% pure HTML + CSS. Works also with arrow keys.

Responsive: yes

Dependencies: -


About the code

Nice transition effect for fullscreen slider.


About the code

Horizontal parallax sliding slider with Swiper.js.


About the code

Responsive smooth 3D perspective slider on mouse move.

Fullscreen hero image slider (swipe panels theme) with HTML, CSS and JavaScript.
Made by Tobias Bogliolo
June 25, 2017

A slider interaction thing using Velocity and Velocity effects (UI Pack) to enhance the animation. Animation is triggered via arrow keys, nav click, or scrolling jack. This version includes borders as part of the interaction.
Made by stephen scaff
May 11, 2017

Simple slider in a minimal style to show off images. Part of the image pops out on each slide.
Made by nathan taylor
Jannuary 22, 2017

The thing is pretty easy customizable. You can safely change font, font size, font color, animation speed. The first letter of a new string in array in JS will appear on a new slide. Easy to create (or delete) a new slide: 1. Add new city in the array in JS. 2. Change number of slides variable and put a new image in scss list in CSS.
Made by Ruslan Pivovarov
October 8, 2016

  1. Clip-path for image masking rectangle border (webkit only).
  2. Blend-mode for this mask.
  3. Smart color system, just put your color name and value into sass map and then add proper class with this color name to elements and everything will work!
  4. Cool credits side-menu (click small button in the center of demo).
  5. Vanilla js with just< 200 lines of code (basically it’s just adds/removes classes).
Made by Nikolay Talanov
October 7, 2016

This skewed slider with scrolling based on pure JS and CSS (without libraries).
Made by Victor Belozyorov
September 3, 2016

A slider animation with Pokemon design.
Made by pham mikun
August 18, 2016

HTML, CSS and JavaScritp slider with complex animation and half-collored angled text.
Made by Ruslan Pivovarov
July 13, 2016

Slider parallax effect with HTML, CSS and JavaScript.
Made by manuel madeira
June 28, 2016

HTML, CSS and JavaScript slider with ripple effect.
Made by Pedro Castro
May 21, 2016

Clip-Path revealing slider with HTML, CSS and JavaScript.
Made by Nikolay Talanov
May 16, 2016

GSAP + Slick slider with preview of previous / next slides.
Made by Karlo Videk
April 27, 2016

HTML, CSS and JavaScript full page slider.
Made by joseph martucci
February 28, 2016

Full slider prototype with HTML, CSS and JavaScript.
Made by Gluber Sampaio
January 6, 2016

A fullscreen, sort of responsive, slideshow animated with Greensocks TweenLite / Tweenmax.
Made by Arden
December 12, 2015

Made by Arden
December 5, 2015

Full-Screen slider (GSAP Timeline) # 1 with HTML, CSS and JavaScript.
Made by Diaco M.Lotfollahi
November 23, 2015

HTML and CSS slider with custom effects.
Made by Nikolay Talanov
November 12, 2015

Fullscreen drag-slider with parallax with HTML, CSS and JavaScript.
Made by Nikolay Talanov
November 12, 2015

Proof of concept rotating slider. Uses clip-path and lots of math.
Made by tyler johnson
April 16, 2015

A simple fullscreen CSS & jQuery slider using translateX and translate3d smoothness!
Made by joseph
August 19, 2014

Responsive Sliders

About the code

Images Opacity Slider

Images opacity slider in HTML and CSS.

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Responsive: yes

Dependencies: -

About the code

Stacked Flexible Slides Layout

This example illustrates how to create layout of slides stacked on each other (especially useful for fade in / out transitions). It "s achieved without setting their height and avoiding position: absolute; so they are fully flexible and easy to keep in normal page flow.

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Responsive: yes

Dependencies: -

About the code

Responsive Slider

Animated responsive slider in HTML, CSS and JavaScript.

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Responsive: yes

Dependencies: animate.css

About the code

Slider With Masked Text

CSS only slider with masked text.

Compatible browsers: Chrome, Edge (partial), Firefox, Opera, Safari

Responsive: yes

Dependencies: -


About the code

Image and content with parallax effect.

About the code

CSS only slide gallery.

Compatible browsers: Chrome, Edge, Firefox, Opera, Safari

Responsive: yes

Dependencies: -

About the code

Pure HTML / CSS Slider

Pure HTML / CSS slider with circular SVG progress bar.

Compatible browsers: Chrome, Edge (partial), Firefox (partial), Opera, Safari

Responsive: yes

Dependencies: font-awesome.css


About the code

An experiment to create a completely responsive vertical slider with thumbnails using only CSS, and retaining the aspect ratio of the images.


About the code

A simple Flexbox image slider / carousel made with vanilla JavaScript.


About the code

This is an experiment that simulates a motion blur effect every time a slide is switched. It takes advantage of SVG Gaussian Blur filter and some CSS keyframes animation. Although the effect does not require any Javascript to properly work, in this example Javascript is only used for the slider functionality.


About the code

Cool animates slider with JS.


About the code

This is an experiment on how SVG patterns can help us create masked-like images for a CSS-only image slider.

Exploring some slider transitions. Swiper slider with parallax option enabled. Playing with CSS filters mostly here.
Made by Mirko Zorić
June 12, 2017

Simple GSAP slider with some subtle tween animations.
Made by Goran Vrban
June 9, 2017

Slider UI with HTML, CSS and JavaScript.
Made by Mergim Ujkani
June 6, 2017

Slider GSAP virsion 2.
Made by em an
May 4, 2017

A little slicey transition slider using a simple add class deal. Have to smooth out the timings a bit and decide on the best approach for mobile (just stack, add touch events, make images full viewport, etc. Supports scrollwheel (scroll jacking), nav buttons and arrow keys. Can also increase the content wrapper to make the images fill viewport in their non animating state, which is kinda cool as well.
Made by stephen scaff
January 3, 2017

Leveraged CSS border-image & clip-path to create a slider animation effect.
Made by emily hayman
December 31, 2016

Little slider built with flexbox. Somewhat responsive, and can have fixed elements alongside the slider area.
Made by Robert
November 28, 2016

HTML, CSS canvas slider.
Made by Nvagelis
October 29, 2016

HTML, CSS and JavaScript 3D smooth slider.
Made by Eduardo Allegrini
October 19, 2016

HTML and CSS cupcake slider with sprinkles!
Made by Jamie Coulter
October 14, 2016


Made by mario s maselli
October 12, 2016

Exploring UI animation # 2 with HTML, CSS and JavaScript.
Made by mario s maselli
September 22, 2016

Exploring UI animation # 3 with HTML, CSS and JavaScript.
Made by mario s maselli
September 22, 2016

Ecommerce Slider v2.0 with HTML, CSS and JavaScript.
Made by Pedro Castro
September 17, 2016

HTML, CSS and JavaScript clean slider with curved background.
Made by Ruslan Pivovarov
September 13, 2016

Exploring UI animation # 1 with HTML, CSS and JavaScript.
Made by mario s maselli
September 8, 2016

Enjoy the power of CSS: Up & down each middle image and paginated slider with lightbox.
Made by Kseso
August 15, 2016

Double exposure is photographic technique that combines 2 different images into a single image.
Made by misaki nakano
August 3, 2016

Slider using CSS3 property clip.
Made by Pedro Castro
May 1, 2016

Responsive CSS slider.
Made by geekwen
April 19, 2016

This is a simple slider experiment displaying words with beautiful meanings which cannot be directly translated. Focus: elegant typography and simple yet alluring transitions.
Made by joe harry
April 5, 2016

The animation idea is to change the value of CSS clip path, thus make a masking effect.
Made by Bhakti Al Akbar
March 31, 2016

Dot slider with HTML, CSS and JavaScript.
Made by Derek Nguyen
March 16, 2016

Prism effect slider with HTML, CSS and JavaScript.
Made by victor
March 12, 2016

Sliding background gallery with HTML, CSS and JavaScript.
Made by Ron Gierlach
November 30, 2015

HTML, CSS and JavaScript slider solution.
Made by Jürgen Genser
September 30, 2015

A product slider powered by Sequence.js. Sequence.js - The responsive CSS animation framework for creating unique sliders, presentations, banners, and other step-based applications.
Made by Ian Lunn
September 15, 2015

Tiny circle customized slider.
Made by Bram de Haan
August 11, 2015

Responsive GTA V slider with HTML, CSS and JavaScript.
Made by eduard mayer
January 24, 2014

It's like a slider but it rotates cubeishly for reasons unknown.
Made by Eric Brewer
December 4, 2013

Made by Hugo DarbyBrown
August 28, 2013

Simple Sliders

Image overlay slider with HTML, CSS and vanilla JavaScript.
Made by Yugam
June 7, 2017

HTML and CSS featured image slider.
Made by joshua hibbert
June 16, 2016

Multi Axis Image Slider

Multi axis image slider with HTML, CSS and JavaScript.
Made by Burak Can
July 22, 2013

Cube slider, a small experiment with HTML5 / CSS3 3d transforms.
Made by Ilya K.
June 26, 2013