Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="http://d3js.org/d3.v3.min.js"></script>
  <meta charset="utf-8">
  <title>d3 toggleClass</title>
</head>
<body>
  <svg width="400" height="200">
    <rect class="bar active" x="0" y="0" width="90" height="200"></rect>
    <rect class="bar" x="100" y="0" width="90" height="200"></rect>
    <rect class="bar active" x="200" y="0" width="90" height="200"></rect>
    <rect class="bar" x="300" y="0" width="90" height="200"></rect>
  </svg>
  <div>
    <button id="all">Toggle All</button>
    <button id="start">Start</button>
    <button id="stop">Stop</button>
  </div>
</body>
</html>
 
var timer;
    
    function handleClick(d, i) {
      d3.select(this).classed("active", !d3.select(this).classed("active"));
    }
    
    function handleClickAll() {
      d3.selectAll(".bar")
        .classed("active", function (d, i) {
          return !d3.select(this).classed("active");
        });
    }
    
    function handleStart() {
      timer = setInterval(handleClickAll, 500);
    }
    
    function handleStop() {
      clearInterval(timer);
    }
    
    d3.selectAll(".bar")
      .on("click", handleClick);
    
    document.getElementById("all").addEventListener("click", handleClickAll);
    document.getElementById("start").addEventListener("click", handleStart);
    document.getElementById("stop").addEventListener("click", handleStop);
    
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
jaketrentpro
0viewers