var svg = d3.select("svg") svg.append("rect") .attr({x: 100, y: 10, width: 700, height: 480}) .style({ fill: "#a72d1a"}) .transition().duration(3000).ease("bounce") .style({ fill: "#5db9e3"})