CSS Sliders and Touch Interaction for Mobile Design

Modifying your sites for smaller screens on mobile devices and tablets

What if you can create a slider with only CSS?
That's right. No need for JavaScript to control the slider!

What do we mean by "SLIDERS"?

A “slider”, is basically a set of boxes arranged in a row, and you can navigate between them by using links, buttons and slider bars.

Using some clever tricks in CSS, radio buttons, labels and background images can be used to provide suitable touch interactions. This is especially effective on mobile devices with browsers that have built-in features or can take advantage of certain WebKit tools.

Basic idea

Example: 1

Here is the basic HTML structure used in the example below

As you can see, the entire slider is made from a set of div elements. A primary box to hold it all, followed by carefully labelled elements to take advantage of CSS teqniques.

Notice that the buttons are using input and label. Specifically adding a 'for' attribute to the label and an 'id' to the input.

image of html

The CSS

Generally the main idea is using a div as a container, which can be set up in a few ways. Here we use display: flex to make it easy. But if you wish you can use flexbox, or you can use a CSS Grid.

Using flex, displays everything in the contained space horzontally. The CSS code is used to mask the region and show our slides through an open window. In this case, each slide is shown as a background image applied through CSS.

image of CSS code

The motion of the transitions for the buttons and the images 'slides', uses the CSS 'cubic-bezier'
This allows for variable speeds within the transition time throughout the motion.

image of CSS code

The radio buttons are carefully moddled and shaded, and given motion and hover effects in the CSS.

image of CSS code

Take a look below at the results, remember, there is no Java!

Example: 2

Click the link below to see another interesting example, still a bunch of boxes...as simple as it sounds

The response on this one is snappy, using the CSS (scroll-snap-type: x mandatory and scroll-behavior: smooth)

For mobile devices, if the browser supports scroll-snap-type the CSS @supports (scroll-snap-type) comes in handy.

NOTE: The navigation buttons are set to not show on supported browsers, but due to using 'target' they navigate to a specified hashtag and each navigation would need to be "backed" out of. This is not an issue using the scrollbar or swiping.

Back Button Image

Resources

Adapted slider design used on this page:

Sam Gord
March 29, 2018
LINK: https://codepen.io/simonestic/pen/bvLKMP

Adapted slider design through the LINK:

Chris Coyier
Oct 12, 2017 (Updated on May 7, 2019)
LINK: https://css-tricks.com/can-get-pretty-far-making-slider-just-html-css/