<html>
<body>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script>
var width = 300;
var height = 300;
var svg = d3.select("body")
.append("svg")
.attr("width", width)
.attr("height", height);
var rect = svg.append("rect")
.attr("x",50)
.attr("y",50)
.attr("width",50)
.attr("height",50)
.attr("fill","red")
.on("mouseover",function(){
d3.select(this)
.attr("fill","yellow");})
.on("mouseout",function(){
d3.select(this)
.attr("fill","blue");});
</script>
</body>
</html>
转载请注明原文地址: https://www.6miu.com/read-2629190.html