d3.js 使用级联过渡

主宰稳场 提交于 2019-12-26 07:46:42
<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title>TEST-5</title>
		<script src="https://d3js.org/d3.v4.js"></script>
	</head>
	<body>

		<script>
			
			const  body = d3.select('body')
			
			function teleport(s) {
				s.transition()
				 .duration(1000)
				 .style('width', '200px')
				 .style('height', '1px')
				 .transition()
				 .duration(500)
				 .style('left', '600px')
				 .transition()
				 .duration(1000)
				 .style('left', '800px')
				 .style('height', '80px')
				 .style('width', '80px')
			}
			
			body.append('div')
				.style('position', 'fixed')
				.style('background-color', 'steelblue')
				.style('left', '10px')
				.style('width', '80px')
				.style('height', '80px')
				.call(teleport)
			
		</script>

	</body>
</html>

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!