如何使用 FabricJS 锁定三角形的垂直倾斜?
<p>在本教程中,我们将学习如何使用 FabricJS 锁定三角形的垂直倾斜。就像我们在画布上指定三角形对象的 位置、颜色、不透明度和尺寸一样,我们还可以指定是否要停止对象垂直倾斜。这可以通过使用<em>lockSkewingY</em> 属性来完成。</p><h2>语法</h2><pre class="just-code notranslate language-javascript" data-lang="javascript">new fabric.Triangle({ lockSkewingY : Boolean }: Object)</pre><h2>参数</h2><ul class="list"><li><p><strong>选项</strong><strong> (可选)</strong> − 此参数是一个<em>对象</em>,它为我们的三角形提供了额外的自定义。使用此参数,可以更改与对象的许多属性相关联的属性,其中<em>lockSkewingY</em> 是一个属性,例如颜色、光标、笔触宽度等。</p></li></ul><h2>选项键</h2><ul class="list"><li><p><strong>lockSkewingY</strong> − 此属性接受一个<strong>布尔值</strong>。如果我们将其分配为“true”值,则对象的垂直倾斜将被锁定。</p></li></ul><h2>示例 1</h2><p><strong>三角形对象在画布上的默认行为</strong></p><p>让我们看一个代码示例来了解当不使用<em>lockSkewingY</em> 属性时三角形对象的默认行为。通过按下<strong>Shift 键</strong>,然后沿水平或垂直方向拖动,可以在水平和垂直方向上倾斜对象。</p><pre class="demo-code notranslate language-javascript" data-lang="javascript"><!DOCTYPE html> <html> <head> <!-- 添加 Fabric JS 库 --> <script src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/510/fabric.min.js"></script> </head> <body> <h2>三角形对象在画布上的默认行为</h2> <p>您可以按下 Shift 键并沿 X 或 Y 轴拖动边缘以查看是否可以在两个方向上进行倾斜。</p> <canvas id="canvas"></canvas> <script> // 初始化画布实例 var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // 初始化三角形对象 var triangle = new fabric.Triangle({ left: 105, top: 70, width: 90, height: 80, fill: "#746cc0", stroke: "#967bb6", strokeWidth: 5, }); // 将其添加到画布 canvas.add(triangle); </script> </body> </html></pre><h2>示例 2</h2><p><strong>将<em>lockSkewingY</em> 作为键传递,值设置为“true”</strong></p><p>在此示例中,我们将了解如何使用<em>lockSkewingY</em> 属性停止三角形对象垂直倾斜的能力。正如我们所看到的,尽管我们可以水平倾斜三角形对象,但我们不允许垂直执行相同的操作。</p><pre class="demo-code notranslate language-javascript" data-lang="javascript"><!DOCTYPE html> <html> <head> <!-- 添加 Fabric JS 库 --> <script src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/510/fabric.min.js"></script> </head> <body> <h2>将 lockSkewingY 作为键传递,值设置为“true”</h2> <p>您可以看到沿 Y 轴的倾斜不再可行</p> <canvas id="canvas"></canvas> <script> // 初始化画布实例 var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // 初始化三角形对象 var triangle = new fabric.Triangle({ left: 105, top: 70, width: 90, height: 80, fill: "#746cc0", stroke: "#967bb6", strokeWidth: 5, lockSkewingY: true, }); // 将其添加到画布 canvas.add(triangle); </script> </body> </html></pre>