admin管理员组文章数量:1345409
I have code in React + TailwindCSS with the CSS for SVG-background look like this:
function App() {
// Only for Test: State to manage the 'active' status, initially false
const [isActive, setIsActive] = React.useState(false);
return (
<div>
{/* Only for Test: Checkbox to toggle the active state */}
<label className="flex items-center gap-2 text-white cursor-pointer">
<input
type="checkbox"
checked={isActive}
onChange={() => setIsActive(!isActive)} // Toggle isActive state on checkbox change
className="w-4 h-4"
/>
Toggle Active
</label>
<div className="flex flex-col items-center gap-4 p-6">
{/* Original Element: with dynamic classes based on isActive state */}
<a
href="#"
className={
isActive
? "w-[150px] h-[60px] relative flex flex-row items-center justify-center pt-[17px] pb-[17px] px-[28px] box-border gap-2.5 text-left text-[18px] leading-[30px] font-semibold rounded-t-[10px] text-[#0A98E7] z-10 whitespace-nowrap active-link"
: "w-[150px] h-[60px] relative flex flex-row items-center justify-center pt-[17px] pb-[17px] px-[28px] box-border gap-2.5 text-left text-[18px] leading-[30px] text-white font-semibold transition-all whitespace-nowrap"
}
>
Manager
</a>
</div>
</div>
);
}
// Render React app
ReactDOM.createRoot(document.getElementById("root")).render(<App />);
.active-link:after {
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 138%;
height: 99%;
background: url("../../Assets/Bg.svg") no-repeat center;
background-size: contain;
transform: translate(-50%, -50%);
z-index: -1;
border-bottom: none;
}
<script src=".3.1/umd/react.production.min.js"></script>
<script src=".3.1/umd/react-dom.production.min.js"></script>
<div id="root"></div>
本文标签: cssHow can i set a linear to text on the background svg in ReactTailwindStack Overflow
版权声明:本文标题:css - How can i set a linear to text on the background svg in React+Tailwind? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743792723a2539873.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论