순풍 CSS와 함께 간단한 Carousel React 개인화 가능
contrario a lo que me encuentro en la web siempre son códigos complicados que te toma al menos 30min de entender y ni hablar de si quieres personalizarlo
pues aquí cree una solución bastante simple, y la comparto por que también es útil para un futuro yo
신 마스 팔라브라스 아퀴 데조 엘 코디고
import React, { useRef } from 'react'
const Carrusel = () => {
const slider = useRef()
const images = [...Array(25).keys()];
return (
<div className='mx-24'>
<div className='flex items-center justify-center w-full h-full '>
<button className='bg-gray-500 mx-2' onClick={() => slider.current.scrollLeft -= 200}>
<svg class='w-5 h-5 text-white sm:w-6 sm:h-6 dark:text-gray-800' fillRule='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' d='M15 19l-7-7 7-7'></path></svg>
</button>
<div ref={slider} class='snap-x overflow-scroll scroll-smooth h-full flex items-center justify-start'>
{images.map((e, i) => (
<div key={i} className='snap-start flex flex-shrink-0 w-auto mx-4'>
<img src={`https://picsum.photos/id/${i}/300/300`} alt={`images${i}`} className='object-cover object-center w-full' />
</div>
))}
</div>
<button className='bg-gray-500 mx-2' onClick={() => slider.current.scrollLeft += 200}>
<svg class='w-5 h-5 text-white sm:w-6 sm:h-6 dark:text-gray-800' fillRule='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' d='M9 5l7 7-7 7'></path></svg>
</button>
</div>
</div>
)
}
export default Carrusel
Reference
이 문제에 관하여(순풍 CSS와 함께 간단한 Carousel React 개인화 가능), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/ragandroll/simple-carrusel-react-personalizable-con-tailwind-css-446k텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)