在本文中,我们将看到如何使用Fabric.js设置画布组的objectCaching。 Fabric.js中的组是可移动的,可以根据需要进行拉伸。此外,可以在初始笔划颜色,高度,宽度,填充颜色或笔划宽度方面自定义组。
为了使之成为可能,我们将使用一个名为Fabric.js的JavaScript库。导入库后,我们将在body标签中创建一个画布块,其中将包含Group。之后,我们将初始化由Fabric.js提供的Canvas和Group的实例,并使用objectCaching属性设置canvas Group的objectCaching。
用法:
fabric.Group([canvas1, canvas2], { objectCaching:Boolean });
参数:该属性接受上述和以下描述的单个参数:
- objectCaching:当`true`时,该对象将缓存在其他画布上。当`false`时,除非必要,否则不缓存对象(clipPath)默认为true
以下示例说明了JavaScript中Fabric.js组objectCaching属性的用法:
例:
HTML
<!DOCTYPE html>
<html>
<head>
<!-- FabricJS CDN -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<div style="text-align:center;width:400px;">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | Group objectCaching Property
</b>
</div>
<div style="text-align:center;">
<canvas id="canvas" width="500" height="300"
style="border:1px solid green;">
</canvas>
</div>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a circle instance
var circle = new fabric.Circle({
radius:100,
fill:'lightgreen',
scaleY:0.6,
originX:'center',
originY:'center'
});
// Initiate a text instance
var text = new fabric.Text('GeeksforGeeks', {
fontSize:25,
originX:'center',
originY:'center'
});
// Initiate a Group instance
var group = new fabric.Group([ circle, text ], {
cornerStyle:'circle',
objectCaching:false
});
// Render the Group in canvas
canvas.add(group);
canvas.centerObject(group);
</script>
</body>
</html>
输出:
相关用法
- Fabric.js Text objectCaching属性用法及代码示例
- Fabric.js Polygon objectCaching属性用法及代码示例
- Fabric.js Polyline objectCaching属性用法及代码示例
- Fabric.js Path objectCaching属性用法及代码示例
- Fabric.js Itext objectCaching属性用法及代码示例
- Fabric.js ActiveSelection objectCaching属性用法及代码示例
- Fabric.js Group fillRule属性用法及代码示例
- Fabric.js Group top属性用法及代码示例
- Fabric.js Group subTargetCheck属性用法及代码示例
- Fabric.js Group strokeUniform属性用法及代码示例
- Fabric.js Group strokeMiterLimit属性用法及代码示例
- Fabric.js Group flipY属性用法及代码示例
- Fabric.js Group borderColor属性用法及代码示例
- Fabric.js Group flipX属性用法及代码示例
- Fabric.js Group hasBorders属性用法及代码示例
- Fabric.js Group minScaleLimit属性用法及代码示例
- Fabric.js Group lockSkewingY属性用法及代码示例
- Fabric.js Group lockSkewingX属性用法及代码示例
- Fabric.js Group dirty属性用法及代码示例
- Fabric.js Group lockScalingFlip属性用法及代码示例
- Fabric.js Group cornerStyle属性用法及代码示例
- Fabric.js Group centeredScaling属性用法及代码示例
- Fabric.js Group cornerSize属性用法及代码示例
- Fabric.js Group centeredRotation属性用法及代码示例
注:本文由纯净天空筛选整理自thacker_shahid大神的英文原创作品 Fabric.js Group objectCaching Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。