카드처럼 뒤집히는 Grid만들기 tailwind
Tailwind CSS는 기본적으로 3D 변환용 유틸리티(예: rotateY)를 제공하지 않습니다. 그러나, Tailwind CSS를 확장하여 rotateY 유틸리티를 만들 수 있습니다. module.exports = { theme: { extend: { animation: { 'spin-y': 'spinY 1s linear infinite', }, keyframes: { spinY: { '0%': { transform: 'rotateY(0deg)' }, '100%': { transform: 'rotateY(360deg)' }, }, }, }, }, variants: {}, plug..
2024. 7. 1.