数学!来救援!
看小提琴!
http://jsfiddle.net/davidtorroija/w64bsnon/2/
var line;
var canvas = this.__canvas = new fabric.Canvas('c');
fabric.Object.prototype.originX = fabric.Object.prototype.originY = 'center';
canvas.on({
'object:scaling': function(p){
console.log('p',p.target.ScaleX )
//p.target._objects[0].scaleX = p.target.scaleX
//p.target._objects[0].scaleY = p.target.scaleY
//p.target.scaleX = 1
//p.target.scaleY = 1
if (p.target.scaleX < 1)
p.target._objects[1].scaleX = 1 + (1 -p.target.scaleX )
else
p.target._objects[1].scaleX = 1 / (p.target.scaleX)
if (p.target.scaleY < 1)
p.target._objects[1].scaleY = 1 + (1 -p.target.scaleY)
else
p.target._objects[1].scaleY = 1 / (p.target.scaleY)
canvas.renderAll()
},
});
var rect = new fabric.Rect({top: 110, left:110, height: 100, width: 100, fill:'#ccc'})
var text = new fabric.IText('pepe',{text: 'pepe',top: 110, left:110, height: 100, width: 100, fill:'#000'})
var group = new fabric.Group([rect,text])
canvas.add(group)
Run Code Online (Sandbox Code Playgroud)
<script src="http://fabricjs.com/lib/fabric.js"></script>
<canvas id="c" width="600" height="600"></canvas>Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
1975 次 |
| 最近记录: |