gpt4 book ai didi

javascript - 后网格布局上的随机不同颜色背景

转载 作者:太空宇宙 更新时间:2023-11-04 09:57:33 25 4
gpt4 key购买 nike

我想使用这个插件来显示博客文章,但客户想要不同颜色的图像而不是将图像作为背景。从这里的另一篇文章中,我找到了我认为可以执行此操作的代码,但我无法将其发布到网站上!这是我编写的代码,似乎可以在这里工作。 Example where code is working.

这是目前有问题的网站。 The div site where it isn't working like it should...

你会看到所有的颜色都是一样的,而不是像它们应该的那样交替......任何有用的建议将不胜感激,为什么这不起作用。

这是上面 jsfiddle 中的 CSS 和 JS。

CSS:

.custom_tdgclients_grid{width:20%;height:90px;display:inline-block}
.custom_tdgclients_grid{background:#a7948b}
.custom_tdgclients_grid:nth-child(2n){background-color:rgb(232, 73, 73)!important;}
.custom_tdgclients_grid:nth-child(3n){background-color:rgb(83, 71, 65)!important;}
.custom_tdgclients_grid:nth-child(4n){background-color:#e8d2af!important;}
.custom_tdgclients_grid:nth-child(5n){background-color:rgb(131, 119, 113)!important;}
.custom_tdgclients_grid:nth-child(6n){background-color:rgb(216, 184, 133)!important;}
.custom_tdgclients_grid:nth-child(7n){background-color:rgb(201, 93, 93)!important;}
.custom_tdgclients_grid:nth-child(8n){background-color:#e8d2af!important;}

和 Javascript:

$('.custom_tdgclients_grid:nth-child(2n)').css({'background-color':'rgb(232, 73, 73)'});
$('.custom_tdgclients_grid:nth-child(3n)').css({'background-color':'rgb(83, 71, 65)'});
$('.custom_tdgclients_grid:nth-child(4n)').css({'background-color':'#e8d2af'});
$('.custom_tdgclients_grid:nth-child(5n)').css({'background-color':'rgb(131, 119, 113)'});
$('.custom_tdgclients_grid:nth-child(6n)').css({'background-color':'rgb(216, 184, 133)'});
$('.custom_tdgclients_grid:nth-child(7n)').css({'background-color':'rgb(201, 93, 93)'});
$('.custom_tdgclients_grid:nth-child(8n)').css({'background-color':'rgb(181, 128, 101)'});

最佳答案

尝试从 2n、`3n 等中删除 n...

如果它不起作用,请尝试通过他们的 parent 识别他们,例如:
#parent .custom_tdgclients_grid:nth-child(2)

希望,它会起作用:)

关于javascript - 后网格布局上的随机不同颜色背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38593000/

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