freeCodeCamp/curriculum/challenges/chinese/04-data-visualization/data-visualization-with-d3/add-classes-with-d3.chinese.md

1.9 KiB
Raw Blame History

id title required challengeType videoUrl localeTitle
587d7fa7367417b2b2512bc8 Add Classes with D3
src
https://cdnjs.cloudflare.com/ajax/libs/d3/4.3.0/d3.min.js
6 使用D3添加类

Description

即使对于较小的应用程序在HTML元素上使用大量内联样式也很难管理。使用CSS规则将类添加到元素和样式一次更容易。 D3具有attr()方法可以向元素添加任何HTML属性包括类名。 attr()方法的工作方式与style()工作方式相同。它采用逗号分隔值,并可以使用回调函数。这是一个向选择中添加“容器”类的示例: selection.attr("class", "container");

Instructions

attr()方法添加到编辑器中的代码中,并在div元素上添加一个bar类。

Tests

tests:
  - text: 你的<code>div</code>元素应该有一类<code>bar</code> 。
    testString: 'assert($("div").attr("class") == "bar", "Your <code>div</code> elements should have a class of <code>bar</code>.");'
  - text: 您的代码应使用<code>attr()</code>方法。
    testString: 'assert(code.match(/\.attr/g), "Your code should use the <code>attr()</code> method.");'

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

// solution required