Published on

Surprisingly Effective Ways To Build A Image Slider With Tailwind CSS

Image Slider

What is Tailwind CSS?

Tailwind CSS is a utility-first CSS framework that focuses on creating personalized user interfaces quickly. It can gives you all the building blocks you are able to create personalized designs without having to fight to override irritating opinionated styles. Also, Tailwind CSS is a highly configurable, low-level CSS framework.

The description of Image Slider ui component

Image slider/carousel with alpinejs

Why use Tailwind CSS to make a Image Slider ui component?

  • It can make the building process of Image Slider ui component faster and more easily.
  • Enables building complex responsive layouts and components freely.
  • Minimum lines of CSS code in Image Slider component file.

The preview of Image Slider ui component

Free download of the Image Slider's source code

The source code of Image Slider ui component

<script defer src="https://unpkg.com/[email protected]/dist/cdn.min.js"></script>

<article x-data="slider" class="relative w-full flex flex-shrink-0 overflow-hidden shadow-2xl">
    <div class="rounded-full bg-gray-600 text-white absolute top-5 right-5 text-sm px-2 text-center z-10">
        <span x-text="currentIndex"></span>/
        <span x-text="images.length"></span>
    </div>

    <template x-for="(image, index) in images">
        <figure class="h-96" x-show="currentIndex == index + 1" x-transition:enter="transition transform duration-300"
        x-transition:enter-start="opacity-0" x-transition:enter-end="opacity-100"
        x-transition:leave="transition transform duration-300" x-transition:leave-start="opacity-100"
        x-transition:leave-end="opacity-0">
        <img :src="image" alt="Image" class="absolute inset-0 z-10 h-full w-full object-cover opacity-70" />
        <figcaption class="absolute inset-x-0 bottom-1 z-20 w-96 mx-auto p-4 font-light text-sm text-center tracking-widest leading-snug bg-gray-300 bg-opacity-25">
            Any kind of content here!
            Primum in nostrane potestate est, quid meminerimus? Nulla erit controversia. Vestri haec verecundius, illi fortasse constantius. 
        </figcaption>
        </figure>
    </template>

    <button @click="back()"
        class="absolute left-14 top-1/2 -translate-y-1/2 w-11 h-11 flex justify-center items-center rounded-full shadow-md z-10 bg-gray-100 hover:bg-gray-200">
        <svg class=" w-8 h-8 font-bold transition duration-500 ease-in-out transform motion-reduce:transform-none text-gray-500 hover:text-gray-600 hover:-translate-x-0.5" fill="none" stroke="currentColor" viewBox="0 0 24 24"
            xmlns="http://www.w3.org/2000/svg">
            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" d="M15 19l-7-7 7-7">
            </path>
        </svg>
    </button>

    <button @click="next()"
    class="absolute right-14 top-1/2 translate-y-1/2 w-11 h-11 flex justify-center items-center rounded-full shadow-md z-10 bg-gray-100 hover:bg-gray-200">
        <svg class=" w-8 h-8 font-bold transition duration-500 ease-in-out transform motion-reduce:transform-none text-gray-500 hover:text-gray-600 hover:translate-x-0.5" fill="none" stroke="currentColor" viewBox="0 0 24 24"
        xmlns="http://www.w3.org/2000/svg">
        <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" d="M9 5l7 7-7 7"></path>
        </svg>
    </button>
</article>

<script>
    document.addEventListener('alpine:init', () => {
        Alpine.data('slider', () => ({
            currentIndex: 1,
            images: [
                'https://source.unsplash.com/1600x900/?beach',
                'https://source.unsplash.com/1600x900/?cat',
                'https://source.unsplash.com/1600x900/?dog',
                'https://source.unsplash.com/1600x900/?lego',
                'https://source.unsplash.com/1600x900/?textures&patterns'
            ],
            back() {
                if (this.currentIndex > 1) {
                    this.currentIndex = this.currentIndex - 1;
                }
            },
            next() {
                if (this.currentIndex < this.images.length) {
                    this.currentIndex = this.currentIndex + 1;
                } else if (this.currentIndex <= this.images.length){
                    this.currentIndex = this.images.length - this.currentIndex + 1
                }
            },
        }))
    })
</script>

How to make a Image Slider with Tailwind CSS?

Install tailwind css of verion 2.2.4

Use the script html tag to import the script of Tailwind CSS of the version 2.2.4

<script src="https://cdn.tailwindcss.com"></script>

All the unility class needed to make a Image Slider component

  • relative
  • w-full
  • flex
  • flex-shrink-0
  • overflow-hidden
  • bg-gray-600
  • text-white
  • absolute
  • top-5
  • right-5
  • text-sm
  • px-2
  • text-center
  • z-10
  • h-96
  • h-full
  • bottom-1
  • z-20
  • w-96
  • mx-auto
  • p-4
  • bg-gray-300
  • bg-opacity-25
  • left-14
  • top-1/2
  • w-11
  • h-11
  • bg-gray-100
  • hover:bg-gray-200
  • w-8
  • h-8
  • text-gray-500
  • hover:text-gray-600
  • right-14

34 steps to make a Image Slider component with Tailwind CSS

  1. Use relative to position an element according to the normal flow of the document.

  2. Use w-full to set an element to a 100% based width.

  3. Use flex to create a block-level flex container.

  4. Use flex to create a block-level flex container.

  5. Use overflow-hidden to clip any content within an element that overflows the bounds of that element.

  6. Control the background color of an element to gray-600 using the bg-gray-600 utilities.

  7. Control the text color of an element to white using the text-white utilities.

  8. Use absolute to position an element outside of the normal flow of the document, causing neighboring elements to act as if the element doesn’t exist.

  9. Use the top-5 utilities to set the top position of a positioned element to 1.25rem.

  10. Use the right-5 utilities to set the right position of a positioned element to 1.25rem.

  11. Control the text color of an element to sm using the text-sm utilities.

  12. Control the horizontal padding of an element to 0.5rem using the px-2 utilities.

  13. Control the text color of an element to center using the text-center utilities.

  14. Control the stack order (or three-dimensional positioning) of an element to 10 in Tailwind, regardless of order it has been displayed, using the z-10 utilities.

  15. Use h-96 to set an element to a fixed height(24rem).

  16. Use h-full to set an element’s height to 100% of its parent, as long as the parent has a defined height.

  17. Use the bottom-1 utilities to set the bottom position of a positioned element to 0.25rem.

  18. Control the stack order (or three-dimensional positioning) of an element to 20 in Tailwind, regardless of order it has been displayed, using the z-20 utilities.

  19. Use w-96 to set an element to a fixed width(24rem).

  20. Control the horizontal margin of an element to auto using the mx-auto utilities.

  21. Control the padding on all sides of an element to 1rem using the p-4 utilities.

  22. Control the background color of an element to gray-300 using the bg-gray-300 utilities.

  23. Control the background color of an element to opacity-25 using the bg-opacity-25 utilities.

  24. Use the left-14 utilities to set the left position of a positioned element to 3.5rem.

  25. Use the top-1/2 utilities to set the top position of a positioned element to 1/2.

  26. Use w-11 to set an element to a fixed width(2.75rem).

  27. Use h-11 to set an element to a fixed height(2.75rem).

  28. Control the background color of an element to gray-100 using the bg-gray-100 utilities.

  29. Control the background color of an element to gray-200 using the hover:bg-gray-200 utilities on hover.

  30. Use w-8 to set an element to a fixed width(2rem).

  31. Use h-8 to set an element to a fixed height(2rem).

  32. Control the text color of an element to gray-500 using the text-gray-500 utilities.

  33. Control the text color of an element to gray-600 on hover using the hover:text-gray-600 utilities.

  34. Use the right-14 utilities to set the right position of a positioned element to 3.5rem.

Conclusion

The above is a step-by-step tutorial on how to use Tailwind CSS to make a Image Slider components, learn and follow along to implement your own components.