gpt4 book ai didi

php - 动态菜单的交替颜色

转载 作者:行者123 更新时间:2023-11-29 17:24:02 25 4
gpt4 key购买 nike

我正在 Opencart 网站上工作,对于左侧的类别,我需要它们以不同的颜色交替显示,例如。红色、紫色、绿色、蓝色等,然后​​在将更多类别添加到菜单时重复。

谁能给我一些最简单的方法的建议?

您可以查看以下站点: http://getsmarta.co/_ecommerce/easy-leaf/

最佳答案

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script src="Scripts/jquery-1.7.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
var color = ['Red', 'Green', 'Yellow'];

$('ul#test').find('li').each(function (i) {
$(this).addClass(color[((i + 3) % 3)]);
});
});
</script>
<style type="text/css">
.Red
{
background-color: Red;
}

.Green
{
background-color: Green;
}

.Yellow
{
background-color: Yellow;
}
</style>
</head>
<body>
<ul id="test">
<li>a</li><li>b</li><li>c</li>
<li>a</li><li>b</li><li>c</li>
<li>a</li><li>b</li><li>c</li>
<li>a</li><li>b</li><li>c</li>
</ul>
</body>
</html>

关于php - 动态菜单的交替颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10500744/

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