我正试图让https://www.jasondavies.com/wordcloud/上显示的字云在我的网站上。
我设法将一些代码放在示例中(和另一个SO答案),然后来到这段代码:
var fill = d3.scale.category20();
var layout = d3.layout.cloud()
.size([900, 500])
.words([
"Hello", "world", "normally", "you","Hello", "Hello", "normally", "you", "want", "more", "words",
"987654321", "123456789"].map(function(d) {
return {text: d, size: 10 + Math.random() * 90};
}))
.padding(5)
.rotate(function() { return ~~(Math.random() * 2) * 60; })
.font("Impact")
.fontSize(function(d) { return d.size; })
.on("end", draw);
layout.start();
function draw(words) {
d3.select(".wordcloud").append("svg")
.attr("width", layout.size()[0])
.attr("height", layout.size()[1])
.append("g")
.attr("transform", "translate(" + layout.size()[0] / 2 + "," + layout.size()[1] / 2 + ")")
.selectAll("text")
.data(words)
.enter().append("text")
.style("font-size", function(d) { return d.size + "px"; })
.style("font-family", "Impact")
.style("fill", function(d, i) { return fill(i); })
.attr("text-anchor", "middle")
.attr("transform", function(d) {
return "translate(" + [d.x, d.y] + ")rotate(" + d.rotate + ")";
})
.text(function(d) { return d.text; });
}
但是这只会旋转单词0或60度https://imgur.com/a/fNyFH,两者之间没有任何内容。如何使其与示例链接中一样?
答案 0 :(得分:2)
定义要应用于单词的旋转的部分是:
.rotate(function() { return ~~(Math.random() * 2) * 60; })
在这里,您可以随机定义0或60的旋转。
在the example you want to reproduce中,单词可以获得这些旋转:[ - 60,-30,0,30,60],您可以使用以下方法获取:
.rotate(function() { return ~~(Math.random() * 5) * 30 - 60; })