我的 jQuery:
$(document).ready(function() {
$('.display').mouseenter(function() {
$(this).fadeTo('fast',0);
});
$('.display').mouseleave(function() {
$(this).fadeTo('fast',1);
});
});
我的 CSS:
div {
display:inline-block;
}
.display {
padding:10px;
}
.bluespot {
height:10px;
width:10px;
border-radius:100%;
background-color:blue;
}
.redspot {
height:10px;
width:10px;
border-radius:100%;
background-color:red;
}
我的 HTML:
<div>
<div class='display'><div class='bluespot'></div></div>
<div class='display'><div class='redspot'></div></div>
</div>
请看这里http://jsfiddle.net/andrewtanner/ZyEKz/1/
我想要做的是重复这些红色和蓝色 CSS 类作为背景,最好是相对于用户屏幕。我可以通过简单地粘贴更多代码来一遍又一遍地重复这些类,但这似乎并不是特别有效,而且它只会是一个绝对值。当它不是图像背景时,是否有任何方法可以重复 CSS,即 background-repeat 元素?