我正在尝试使用Easel.js在画布中创建一个可重新调整大小的数据库图标。我想出了如何创建基础圆柱但无法计算出堆叠的曲线。数据库图标应如下所示:
http://icons.iconarchive.com/icons/visualpharm/icons8-metro-style/256/Data-Database-icon.png
我已经开始在JSFiddle上创建图标了: http://jsfiddle.net/rsperlazza/u6Uaq/
var stage = new createjs.Stage($("#test")[0]);
stage.enableMouseOver(50);
stage.canvas.width = 500;
stage.canvas.height = 500;
var shape = new createjs.Shape();
var g = shape.graphics;
var x = 50;
var y = 100;
var width = 100;
var height = 120;
g.beginStroke("red");
g.beginFill("black");
g.drawEllipse(x, y, width, height / 4);
g.moveTo(x, y + height / 8);
g.lineTo(x, y + 7 * height / 8);
g.moveTo(x, y + height / 8);
g.lineTo(x, y + 7 * height / 8);
g.drawEllipse(x, y + 3 * height / 4, width, height / 4);
g.endStroke();
g.drawRect(x, y + height / 8, width, 3 * height / 4);
stage.addChild(shape);
stage.update();
答案 0 :(得分:0)
我建议您查看Flash CS6或Flash CC的ToolJ for CreateJS面板。您可以根据需要创建复杂的形状,然后将其导出。您必须为Flash CS6(http://www.adobe.com/ca/products/flash/flash-to-html5.html)下载它,但它附带更新的版本。
另一个简单的方法是drawcri.pt,以及将矢量导出为各种格式的Illustrator面板,包括EaselJS Graphics。请注意,它不会有完整的Illustrator矢量支持,但它做得非常好。 http://drawscri.pt/