随机生成色卡HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Color Palette</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: grid;
grid-template-columns: repeat(30, 1fr);
gap: 2px;
}
.color-card {
width: 100%;
height: 30px;
display: flex;
justify-content: center;
align-items: center;
color: white;
font-size: 10px;
}
.color-code {
background: rgba(0, 0, 0, 0.5);
padding: 2px 4px;
border-radius: 2px;
}
</style>
</head>
<body>
<script>
function generateColors() {
const body = document.body;
for (let i = 0; i < 900; i++) { // 30 x 30 = 900
const color = `#${Math.floor(Math.random() * 16777215).toString(16).padStart(6, '0')}`;
const div = document.createElement('div');
div.className = 'color-card';
div.style.backgroundColor = color;
div.innerHTML = `<div class='color-code'>${color}</div>`;
body.appendChild(div);
}
}
generateColors();
</script>
</body>
</html>
一站式新闻发稿平台
营销传播更快
优质广告资源,最快 5 分钟内出稿。让品牌宣传更高效。
权威性、公信力强
让您的产品和企业更具公信力、品牌形象更有说服力
资源性价比高
优质的一手资源,拒绝中间商差价,让推广需求直达资源主方
合作专业规范
专业为各大公关、传媒、广告公司、互联网企业提供完美服务