freeCodeCamp/curriculum/challenges/chinese/04-data-visualization/data-visualization-with-d3/add-a-hover-effect-to-a-d3-...

2.0 KiB
Raw Blame History

id title challengeType videoUrl localeTitle
587d7faa367417b2b2512bd4 Add a Hover Effect to a D3 Element 6 将悬停效果添加到D3元素

Description

当用户用鼠标悬停在其上时可以添加突出显示条形的效果。到目前为止矩形的样式使用内置的D3和SVG方法但您也可以使用CSS。使用attr()方法在SVG元素上设置CSS类。然后新类的:hover伪类保存任何悬停效果的样式规则。

Instructions

使用attr()方法向所有rect元素添加一个bar类。将鼠标悬停在其上时,会将条形的fill颜色更改为棕色。

Tests

tests:
  - text: 你的<code>rect</code>元素应该有一类<code>bar</code> 。
    testString: 'assert($("rect").attr("class") == "bar", "Your <code>rect</code> elements should have a class of <code>bar</code>.");'

Challenge Seed

<style>
  .bar:hover {
    fill: brown;
  }
</style>
<body>
  <script>
    const dataset = [12, 31, 22, 17, 25, 18, 29, 14, 9];

    const w = 500;
    const h = 100;

    const svg = d3.select("body")
                  .append("svg")
                  .attr("width", w)
                  .attr("height", h);

    svg.selectAll("rect")
       .data(dataset)
       .enter()
       .append("rect")
       .attr("x", (d, i) => i * 30)
       .attr("y", (d, i) => h - 3 * d)
       .attr("width", 25)
       .attr("height", (d, i) => 3 * d)
       .attr("fill", "navy")
       // Add your code below this line



       // Add your code above this line

    svg.selectAll("text")
       .data(dataset)
       .enter()
       .append("text")
       .text((d) => d)
       .attr("x", (d, i) => i * 30)
       .attr("y", (d, i) => h - (3 * d) - 3);

  </script>
</body>

Solution

// solution required