2 Star 0 Fork 0

mirrors_ReneNyffenegger/about-d3.js

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
style-function.html 1.05 KB
一键复制 编辑 原始数据 按行查看 历史
René Nyffenegger 提交于 2022-11-19 20:49 . use version 7.6.1
<!DOCTYPE html>
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<title>style</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/7.6.1/d3.min.js"></script>
<script>
function main() {
d3.selectAll('div').style('background-color', function(data, index) {
document.getElementById('out').innerHTML += 'index: ' + index + "<br>";
return '#' + Math.floor(Math.random() * 256).toString(16) +
Math.floor(Math.random() * 256).toString(16) +
Math.floor(Math.random() * 256).toString(16);
})
}
</script>
</head>
<body onload='main();'>
Use <code>selectAll(...).style(..., function())</code> to change the style of selected elements.
<div>div 1</div>
<div>div 2</div>
<div>div 3</div>
<div>div 4</div>
<div>div 5</div>
<div>div 6</div>
<div>div 7</div>
<div>div 8</div>
<div>div 9</div>
<p>Compare with <a href='selectAll-data-style.html'>selectAll-data-style.html</a>
<h1>Out</h1>
<p id='out'></p>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_ReneNyffenegger/about-d3.js.git
git@gitee.com:mirrors_ReneNyffenegger/about-d3.js.git
mirrors_ReneNyffenegger
about-d3.js
about-d3.js
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385