渡//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
>
正文{
字體大小:12px;
font-family:"Courier New"、Courier、等寬字體;
字母間距:5px;
}
ul{
列表樣式:無;
}
li{
寬度:130px;
高度:130px;
行高:130px;
垂直對齊:中間;
文字對齊:居中;
浮動:左;
左邊距:20px;
}
樣式>
javascript產生隨機顏色 $(function(){
$("ul li").each(function(){
$(this).css("background-color",getRandomColor());
});
})
函數getRandomColor()
{
var c = '#';
var cArray = ['0','1','2','3','4','5', '6','7','8','9','A' ,'B','C','D','E','F'];
for(var i = 0 ; i {
var cIndex = Math.round(Math.random()*15);
c = cArray[cIndex];
}
回傳c;
}
腳本>
頭>
身體>