请查看代码。我想有条件地为about链接添加一些额外的样式,因此我将其添加到标记的模板字符串的$ {}中。这不适用于新样式。
我尝试通过串联模板字符串。那也不起作用。
我无法在标记中设置style = {style},因为这样我将无法使用:hover样式。
import Link from 'next/link'
import { withRouter } from 'next/router'
const Header = ({ children, router, href }) => {
const isIndex = router.pathname === "/";
const isAbout = router.pathname === "/about";
return (
<div>
<Link href="/">
<a id="home">Timers</a>
</Link>
<Link href="/about">
<a id="about">About</a>
</Link>
<style jsx>{
`
a {
font-family: 'Montserrat Subrayada', sans-serif;
color: #ffffff;
text-decoration: none;
font-size: 24px;
padding: 2px;
margin-right: 30px;
}
a:hover {
color: #000000;
background-color: #ffffff;
border-radius: 2px;
}
${isAbout ? `
#about {
background-color: red;
color: #000000;
}
#about:hover {
background-color: blue;
color: #ffffff;
}
` : ``}
`
}</style>
</div>
)}
export default withRouter(Header)
如何应用条件样式?
答案 0 :(得分:0)
解决方案是仅动态更改属性值,而不是在单个条件中添加整个新的选择器,您必须对每个属性执行此操作,如下所示:
<style jsx>{
`
a {
font-family: 'Montserrat Subrayada', sans-serif;
color: #ffffff;
text-decoration: none;
font-size: 24px;
padding: 2px;
margin-right: 30px;
border-radius: 2px;
}
a:hover {
color: #000000;
background-color: #ffffff;
}
#home {
background-color: ${isHome ? "#ffffff" : ""};
color: ${isHome ? "#000000" : ""};
}
#about {
background-color: ${isAbout ? "#ffffff" : ""};
color: ${isAbout ? "#000000" : ""};
}
`
}</style>
(我在问问题的时候就知道了问题的答案,所以我想我还是随便贴上答案,以防别人需要它)
答案 1 :(得分:0)
由于 styled-jsx 在构建时编译样式,因此无法预处理动态样式,这是文档中提到的限制here
<块引用>插件可以使用流行的预处理器,如 SASS、Less、Stylus、PostCSS 或在编译时对样式应用自定义转换。