gpt4 book ai didi

reactjs - 动画高度属性 tailwindcss

转载 作者:行者123 更新时间:2023-12-04 07:59:01 26 4
gpt4 key购买 nike

有没有办法为高度属性设置动画,这是我的简单代码,但高度不是动画它只是立即改变

<div>
<a className="group flex items-center w-full pr-4 pb-2 text-gray-600 transition-transform transform rounded-md hover:translate-x-1 focus:outline-none focus:ring collapsed" onClick={() => { setSecond(!secondElement) }}>
<span className="ml-1 text-white text-xl group"> TITLE </span>
</a>
</div>
<div className={`transition-all duration-300 ease-in-out transform ${!secondElement ? 'h-0' : 'h-auto'} bg-blue mt-2 space-y-2 px-7`}>
<a
role="menuitem"
className="block p-2 text-sm text-white transition-colors duration-200 rounded-md dark:text-light dark:hover:text-light hover:text-gray-700">1</a>
<a
role="menuitem"
className="block p-2 text-sm text-white transition-colors duration-200 rounded-md dark:hover:text-light hover:text-gray-700">2</a>
</div>
</div>

最佳答案

默认情况下,Tailwind 不提供 transition-property height 的实用程序属性(property)。您需要将它添加到您的 tailwind.config.js过渡到工作的文件。

module.exports = {
theme: {
extend: {
transitionProperty: {
height: 'height'
}
}
}
}

关于reactjs - 动画高度属性 tailwindcss,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66553796/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com