我有一个主页,ul li divdiv是一个方框,我在顶部有3x3.我网站的底部是代码生成标记,我有类似的东西.
我想给每个div"盒子"一种颜色,目前它们都是用css设计的.有没有办法用jquery来检查ul li div,如果div存在,那么为内联样式添加一种不同的颜色?我需要在脚本中存储颜色.
这是我开始的方式?:
$("div.box").css({"background-color": "color"});
Run Code Online (Sandbox Code Playgroud)
这是我的示例缩减标记:
<ul>
<li data-target="aboutme" data-target-activation="click" style="margin-top:0px" class="tile high me">
<div>
<h2>About Me</h2>
<h3></h3>
<img width="48" height="48" alt="" class="icon" src="images/icons/x.png">
</div>
</li>
<li data-target="aboutme" data-target-activation="click" style="margin-top:0px" class="tile high me">
<div>
<h2>Pane 2</h2>
<h3></h3>
<img width="48" height="48" alt="" class="icon" src="images/icons/x.png">
</div>
</li>
<li data-target="aboutme" data-target-activation="click" style="margin-top:0px" class="tile high me">
<div>
<h2>Pane 3</h2>
<h3></h3>
<img width="48" height="48" alt="" class="icon" src="images/icons/x.png">
</div>
</li>
</ul>
Run Code Online (Sandbox Code Playgroud)
这是css:
.tiles {
height: 95%;
margin: 0 auto;
min-height: 950px;
overflow: visible;
padding: 10px;
width: 957px;
}
.tile.high {
float: left;
height: 200px;
margin-top: -100px;
padding-left: 10px;
width: 23.6%;
}
li.tile div {
background-color: #00ABA9;
}
.tile div {
background-repeat: no-repeat;
height: 100%;
margin: 10px 10px 0;
overflow: hidden;
width: 100%;
}
Run Code Online (Sandbox Code Playgroud)
循环通过div并在每个上使用不同的颜色:
// Declare colors you want to use
var myColors = [
'#f00', '#abc', '#123'
];
var i = 0;
$('div.box').each(function() {
$(this).css('background-color', myColors[i]);
i = (i + 1) % myColors.length;
});
Run Code Online (Sandbox Code Playgroud)
在线查询:http://jsfiddle.net/4NVRQ/