d3.js中的d3.easePolyIn()函数用于对特定元素的多项式 index 缓和过渡效果。此 index 缓和函数将时间增加到给定 index 的幂。
用法:
d3.easePolyIn // Or d3.easePolyIn.exponent(t);
参数:该函数接受如上所述和以下描述的单个参数:
- t:现在是将时间提升为 index 幂的时候了。
返回值:该函数没有返回值。
方法:D3.js过渡函数将用于对特定元素应用不同的缓动效果。首先,创建一个SVG元素并将其附加到HTML页面的主体,然后创建一个矩形或任何其他形状并将其附加到SVG。设置矩形的一些属性以使其具有漂亮的颜色和大小,并应用d3.transition函数,然后再应用ease()函数,并将d3.easePolyIn或d3.easePolyIn.exponent(t)作为参数来简化函数。
范例1:
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script 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("rect")
.attr("x", 10)
.attr("y",50)
.attr("width",150)
.attr("height",50)
.attr("fill", "green")
.transition()
// Use of d3.easePolyIn
.ease(d3.easePolyIn)
.attr("x", 100)
.attr("y",100)
.attr("width",150)
.attr("height",200)
.duration(2000);
</script>
</body>
</html>
输出:
范例2:
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script 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("rect")
.attr("x", 10)
.attr("y",50)
.attr("width",150)
.attr("height",50)
.attr("fill", "green")
.transition()
// Use of d3.easePolyIn
.ease(d3.easePolyIn.exponent(50))
.attr("x", 100)
.attr("y",100)
.attr("width",150)
.attr("height",200)
.duration(2000);
</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 easePolyIn() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。