d3.js中的d3.easePoly()函数用于为特定元素提供对称多项式效果。此聚合缓动函数用作d3.ease()函数中的参数。
方法:D3.js过渡函数将用于对特定元素应用不同的缓动效果。首先,创建一个SVG元素并将其附加到HTML页面的主体,然后创建一个圆形并将其附加到SVG。设置圆的一些属性以使其具有漂亮的颜色和大小,并应用d3.transition函数,然后再应用ease()函数,并将d3.easePoly作为参数来简化函数。
用法:
svg.append().attr().ease(d3.easePoly).attr();
参数:该函数不接受任何参数。
返回值:此函数不返回任何内容。
下面给出的是上面给出的函数的一些例子。
范例1:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="
width=device-width, initial-scale=1.0">
<script type="text/javascript"
src="https://d3js.org/d3.v4.min.js">
</script>
</head>
<body>
<h1 style="color:green">GeeksforGeeks</h1>
<svg width="500px" height="500px"></svg>
<script>
var svg = d3.select("svg")
.attr("transform", "translate(0, -50)");
svg.append("circle")
.attr("cx", 100)
.attr("r", 50)
.attr("cy", 100)
.attr("fill", "green")
.transition()
// Use of d3.easePoly function
.ease(d3.easePoly)
.attr("r", 10)
.attr("fill", "red")
.duration(1500);
</script>
</body>
</html>
输出:
范例2:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="
width=device-width, initial-scale=1.0">
<script type="text/javascript"
src="https://d3js.org/d3.v4.min.js">
</script>
</head>
<body>
<h1 style="color:green">GeeksforGeeks</h1>
<svg width="500px" height="500px"></svg>
<script>
var svg = d3.select("svg")
svg.append("rect")
.attr("x", 50)
.attr("width", 10)
.attr("height", 10)
.attr("fill", "green")
.transition()
// Use of d3.easePoly function
.ease(d3.easePoly)
.attr("width", 100)
.attr("height", 100)
.attr("fill", "red")
.duration(1500);
</script>
</body>
</html>
输出:
相关用法
- PHP imagecreatetruecolor()用法及代码示例
- p5.js year()用法及代码示例
- d3.js d3.utcTuesdays()用法及代码示例
- PHP ImagickDraw getTextAlignment()用法及代码示例
- PHP Ds\Sequence last()用法及代码示例
- PHP array_udiff_uassoc()用法及代码示例
- PHP geoip_continent_code_by_name()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP GmagickPixel setcolor()用法及代码示例
- PHP opendir()用法及代码示例
- PHP cal_to_jd()用法及代码示例
- d3.js d3.bisectLeft()用法及代码示例
- PHP stream_get_transports()用法及代码示例
- PHP Ds\Deque pop()用法及代码示例
注:本文由纯净天空筛选整理自tarun007大神的英文原创作品 D3.js easepoly() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。