如何在react.js中映射每个元素具有不同zIndex的数组
我想用每个元素映射一个具有不同 zIndex 的数组。我该怎么做?我应该在十年内写吗?或任何其他选择?请帮忙。 这是我的代码:
{loading && error ? (
<div> Loading Bro </div>
) : (
boards.map((board, index) => (
<img
className={style.todo_profile_picture_top}
style={{
right: `100px - ${index} * 20`,
zIndex: {10 - index},
}}
src={pp1}
alt="profile"
/>
))
)}
I wanna map an array with different zIndex with each element. how can i do it? should i write within tenary? or any other option? Please help.
Here is my code :
{loading && error ? (
<div> Loading Bro </div>
) : (
boards.map((board, index) => (
<img
className={style.todo_profile_picture_top}
style={{
right: `100px - ${index} * 20`,
zIndex: {10 - index},
}}
src={pp1}
alt="profile"
/>
))
)}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的想法似乎是正确的,但您需要检查一下语法。
Your idea seems correct but you need to check syntaxes a bit.
尝试这样的事情
Try something like this