2.6 KiB
2.6 KiB
id, title, challengeType, forumTopicId, localeTitle
id | title | challengeType | forumTopicId | localeTitle |
---|---|---|---|---|
587d7fa7367417b2b2512bc8 | Add Classes with D3 | 6 | 301473 | Добавить классы с D3 |
Description
attr()
для добавления любого элемента HTML к элементу, включая имя класса. Метод attr()
работает так же, как это делает style()
. Он принимает значения, разделенные запятыми, и может использовать функцию обратного вызова. Вот пример добавления класса «container» к выбору: selection.attr("class", "container");
Instructions
attr()
в код в редакторе и поместите класс bar
в элементы div
.
Tests
tests:
- text: Your <code>div</code> elements should have a class of <code>bar</code>.
testString: assert($('div').attr('class') == "bar");
- text: Your code should use the <code>attr()</code> method.
testString: assert(code.match(/\.attr/g));
Challenge Seed
<style>
.bar {
width: 25px;
height: 100px;
display: inline-block;
background-color: blue;
}
</style>
<body>
<script>
const dataset = [12, 31, 22, 17, 25, 18, 29, 14, 9];
d3.select("body").selectAll("div")
.data(dataset)
.enter()
.append("div")
// Add your code below this line
// Add your code above this line
</script>
</body>
Solution
<style>
.bar {
width: 25px;
height: 100px;
display: inline-block;
background-color: blue;
}
</style>
<body>
<script>
const dataset = [12, 31, 22, 17, 25, 18, 29, 14, 9];
d3.select("body").selectAll("div")
.data(dataset)
.enter()
.append("div")
// Add your code below this line
.attr("class","bar");
// Add your code above this line
</script>
</body>