FabricJS 如何为Polyline添加模糊入和模糊出的动画
我们可以通过创建一个 fabric.Polyline 的实例来创建一个Polyline对象 。 一个折线对象可以被描述为一组连接的直线段。由于它是FabricJS的基本元素之一,我们也可以通过应用角度、不透明度等属性来轻松定制它。
由于FabricJS本身没有模糊功能,我们将使用CSS来为我们的多段线添加模糊入和模糊出动画。
语法
filter: blur(Xpx)
这里,” X “是一个接受 Number 值的属性,它决定了要应用的模糊量。
例子1:给多段线添加模糊动画
让我们看一个代码例子,看看我们如何通过使用 过滤器 属性来添加模糊动画。为了创建一个模糊效果,我们需要创建一个动画,从模糊值0px开始,到模糊值5px,我们已经添加了一个5秒的持续时间,你可以在下面的代码例子中看到。
<!DOCTYPE html>
<html>
<head>
<!-- Adding the Fabric JS Library-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/510/fabric.min.js"></script>
</head>
<body>
<h2>Adding blur-in animation to the polyline</h2>
<p>You can see the blur-in effect has been added to the polyline</p>
<canvas id="canvas"></canvas>
<style>
@-webkit-keyframes blur {
0% { filter: blur(0px);}
100% { filter: blur(5px);}
}
#canvas {
animation: blur 5s;
}
</style>
<script>
// Initiate a canvas instance
var canvas = new fabric.Canvas("canvas");
canvas.setWidth(document.body.scrollWidth);
canvas.setHeight(250);
// Initiate a polyline object
var polyline = new fabric.Polyline(
[
{ x: 50, y: 0 },
{ x: 25, y: 43.30},
{ x: -25, y: 43.301 },
{ x: -50, y: 0},
{ x: -25, y: -43.301},
{ x: 25, y: -43.301 },
{ x: 50, y: 0 },
],
{
fill: "skyblue",
stroke: "orange",
strokeWidth: 5,
top: 50,
left: 300,
}
);
// Adding it to the canvas
canvas.add(polyline);
</script>
</body>
</html>
例子2:给多段线添加模糊动画
让我们看一个代码例子,看看我们如何通过使用过滤器属性来添加模糊动画。为了创建一个模糊效果,我们需要创建一个动画,从模糊值5px开始,到模糊值0px为止,我们添加了一个5秒的持续时间,你可以在下面的代码例子中看到。
<!DOCTYPE html>
<html>
<head>
<!-- Adding the Fabric JS Library-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/510/fabric.min.js"></script>
</head>
<body>
<h2>Adding blur-out animation to the polyline</h2>
<p>You can see the blur-out effect has been added to the polyline</p>
<canvas id="canvas"></canvas>
<style>
@-webkit-keyframes blur {
0% { filter: blur(5px);}
100% { filter: blur(0px);}
}
#canvas {
animation: blur 5s;
}
</style>
<script>
// Initiate a canvas instance
var canvas = new fabric.Canvas("canvas");
canvas.setWidth(document.body.scrollWidth);
canvas.setHeight(250);
// Initiate a polyline object
var polyline = new fabric.Polyline(
[
{ x: 50, y: 0 },
{ x: 25, y: 43.30},
{ x: -25, y: 43.301 },
{ x: -50, y: 0},
{ x: -25, y: -43.301},
{ x: 25, y: -43.301 },
{ x: 50, y: 0 },
],
{
fill: "skyblue",
stroke: "orange",
strokeWidth: 5,
top: 50,
left: 300,
}
);
// Adding it to the canvas
canvas.add(polyline);
</script>
</body>
</html>