html D3byEX 7.5:开始和结束事件(改编自D3.js v4)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html D3byEX 7.5:开始和结束事件(改编自D3.js v4)相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<meta charset=utf-8>
<head>
<meta name="description" content="D3.js v4, rect transition event, start,
end, size, color, location" />
</head>
<body>
<script src="http://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/d3-selection-multi.v1.min.js"></script>
<script>
var svg = d3.select('body')
.append('svg')
.attrs({ width: 500, height: 200 });
svg.append('rect')
.attrs({ x: 10, y: 10, width: 80, height: 80, fill: 'red' })
.transition()
.on('start', function () { // transition event: start
d3.select(this).attrs({ fill: 'green' });
})
.delay(1000)
.duration(1500)
.attrs({ x: 240, y: 80, width: 60, height: 60, fill: 'purple' })
.transition()
.duration(1500)
.attrs({ width: 40, height: 40, x: 460, y: 10, fill: 'blue' })
.on('end', function () { // transition event: end
d3.select(this).attrs({ fill: 'yellow' });
});
</script>
</body>
</html>
以上是关于html D3byEX 7.5:开始和结束事件(改编自D3.js v4)的主要内容,如果未能解决你的问题,请参考以下文章
Progressbar实现事件发生和结束的进度(c#,asp.net,html,js)
html D3byEX 8.4:拖放(适应D3.js v4)
html D3byEX:4.7:右轴(适应D3.js v4)
JS 中开始时间加小时数等于结束时间,怎么改这个代码?
html D3byEX 9.9:环形图(适应D3.js v4)
html D3byEX 7.3:延迟转换(适应D3.js v4)