如何使用 FabricJS 设置椭圆的不透明度?
在本教程中,我们将学习如何使用 FabricJS 设置椭圆的不透明度。椭圆是 FabricJS 提供的各种形状之一。为了创建椭圆,我们将必须创建一个 fabric.Ellipse 类的实例并将其添加到画布上。我们可以通过向其添加填充颜色、消除其边框甚至更改其尺寸来自定义椭圆对象。类似地,我们还可以使用 opacity 属性更改其不透明度。
语法
new fabric.Ellipse({ opacity: Number }: Object)
参数
options (可选) - 此参数是一个 对象,它为我们的椭圆提供了额外的自定义选项。使用此参数,可以更改与对象相关的颜色、光标、边框宽度和许多其他属性,其中 opacity 是一个属性。
选项键
opacity - 此属性接受一个 数字,允许我们控制对象的不透明度。opacity 属性的默认值为 1。
示例 1
椭圆对象的默认外观
让我们看一段代码,看看我们的椭圆对象在 opacity 属性的默认值下是什么样子。在本例中,我们不会向类传递任何不透明度键,如下所示:
<!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>How to set the opacity of Ellipse using FabricJS?</h2> <p>Observe that here we have not used the <b>opacity</b> property, so by default, it takes the value 1. </p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); // Initiate an ellipse instance var ellipse = new fabric.Ellipse({ left: 115, top: 50, rx: 80, ry: 50, fill: "#ff1493", }); // Adding it to the canvas canvas.add(ellipse); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>
示例 2
将 opacity 属性作为键传递
在本例中,我们将看到如何为 opacity 属性赋值会改变画布中椭圆对象的不透明度。这里我们使用了 0.3 作为不透明度,因此使我们的椭圆对象看起来是半透明的,而不是完全不透明的。
<!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>How to set the opacity of Ellipse using FabricJS?</h2> <p>Here we have set the <b>opacity</b> at 0.3, which is why the ellipse is less opaque.</p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); // Initiate an ellipse instance var ellipse = new fabric.Ellipse({ left: 115, top: 50, rx: 80, ry: 50, fill: "#ff1493", opacity: 0.3, }); // Adding it to the canvas canvas.add(ellipse); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>
广告