mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 20:48:28 +08:00
668 lines
23 KiB
JavaScript
668 lines
23 KiB
JavaScript
Test.Modules.SHAPE = {
|
|
'scale rect with stroke scale disabled': function(containerId) {
|
|
var stage = new Kinetic.Stage({
|
|
container: containerId,
|
|
width: 578,
|
|
height: 200
|
|
});
|
|
var layer = new Kinetic.Layer();
|
|
var rect = new Kinetic.Rect({
|
|
x: 200,
|
|
y: 90,
|
|
width: 100,
|
|
height: 50,
|
|
fill: 'green',
|
|
stroke: 'black',
|
|
strokeWidth: 4,
|
|
scale: [3, 1],
|
|
draggable: true,
|
|
strokeScaleEnabled: false
|
|
});
|
|
|
|
layer.add(rect);
|
|
stage.add(layer);
|
|
|
|
//console.log(layer.toDataURL());
|
|
|
|
testDataUrl(layer.toDataURL(), 'scaled rect with disabled stroke scale', 'probem with stroke scale disabling');
|
|
},
|
|
'test intersects()': function(containerId) {
|
|
var stage = new Kinetic.Stage({
|
|
container: containerId,
|
|
width: 578,
|
|
height: 200
|
|
});
|
|
var layer = new Kinetic.Layer();
|
|
var rect = new Kinetic.Rect({
|
|
x: 200,
|
|
y: 100,
|
|
width: 100,
|
|
height: 50,
|
|
fill: 'green',
|
|
stroke: 'black',
|
|
strokeWidth: 4
|
|
});
|
|
|
|
layer.add(rect);
|
|
stage.add(layer);
|
|
|
|
test(rect.intersects({
|
|
x: 200,
|
|
y: 100
|
|
}) === true, '(200,100) should intersect the shape');
|
|
|
|
test(rect.intersects({
|
|
x: 197,
|
|
y: 97
|
|
}) === false, '(197, 97) should not intersect the shape');
|
|
|
|
test(rect.intersects({
|
|
x: 250,
|
|
y: 125
|
|
}) === true, '(250, 125) should intersect the shape');
|
|
|
|
test(rect.intersects({
|
|
x: 300,
|
|
y: 150
|
|
}) === true, '(300, 150) should intersect the shape');
|
|
|
|
test(rect.intersects({
|
|
x: 303,
|
|
y: 153
|
|
}) === false, '(303, 153) should not intersect the shape');
|
|
|
|
},
|
|
'custom shape with two fills and two strokes': function(containerId) {
|
|
var stage = new Kinetic.Stage({
|
|
container: containerId,
|
|
width: 578,
|
|
height: 200
|
|
});
|
|
var layer = new Kinetic.Layer();
|
|
|
|
var drawTriangle = function(canvas) {
|
|
var context = canvas.getContext();
|
|
context.beginPath();
|
|
context.moveTo(200, 50);
|
|
context.lineTo(420, 80);
|
|
context.quadraticCurveTo(300, 100, 260, 170);
|
|
context.closePath();
|
|
canvas.fillStroke(this);
|
|
|
|
context.beginPath();
|
|
context.moveTo(300, 150);
|
|
context.lineTo(520, 180);
|
|
context.quadraticCurveTo(400, 200, 360, 270);
|
|
context.closePath();
|
|
canvas.fillStroke(this);
|
|
};
|
|
var triangle = new Kinetic.Shape({
|
|
drawFunc: drawTriangle,
|
|
fill: "#00D2FF",
|
|
stroke: "black",
|
|
strokeWidth: 4,
|
|
id: 'myTriangle',
|
|
draggable: true,
|
|
shadowColor: 'black',
|
|
shadowOpacity: 0.5,
|
|
shadowBlur: 10,
|
|
shadowOffset: 10
|
|
});
|
|
|
|
stage.add(layer.add(triangle));
|
|
|
|
var dataUrl = layer.toDataURL();
|
|
//console.log(dataUrl);
|
|
testDataUrl(dataUrl, 'custom shape with two fills and strokes', 'problem with custom shape with two fills');
|
|
|
|
},
|
|
'custom shape with fill, stroke, and strokeWidth': function(containerId) {
|
|
var stage = new Kinetic.Stage({
|
|
container: containerId,
|
|
width: 578,
|
|
height: 200
|
|
});
|
|
var layer = new Kinetic.Layer();
|
|
var shape = new Kinetic.Shape({
|
|
drawFunc: function(canvas) {
|
|
var context = canvas.getContext();
|
|
context.beginPath();
|
|
context.moveTo(0, 0);
|
|
context.lineTo(100, 0);
|
|
context.lineTo(100, 100);
|
|
context.closePath();
|
|
canvas.fill(this);
|
|
canvas.stroke(this);
|
|
},
|
|
x: 200,
|
|
y: 100,
|
|
fill: 'green',
|
|
stroke: 'blue',
|
|
strokeWidth: 5
|
|
});
|
|
|
|
layer.add(shape);
|
|
stage.add(layer);
|
|
},
|
|
'change custom shape draw func': function(containerId) {
|
|
var stage = new Kinetic.Stage({
|
|
container: containerId,
|
|
width: 578,
|
|
height: 200
|
|
});
|
|
var layer = new Kinetic.Layer();
|
|
var shape = new Kinetic.Shape({
|
|
drawFunc: function(canvas) {
|
|
var context = canvas.getContext();
|
|
context.beginPath();
|
|
context.moveTo(0, 0);
|
|
context.lineTo(100, 0);
|
|
context.lineTo(100, 100);
|
|
context.closePath();
|
|
canvas.fill(this);
|
|
canvas.stroke(this);
|
|
},
|
|
x: 200,
|
|
y: 100,
|
|
fill: 'green',
|
|
stroke: 'blue',
|
|
strokeWidth: 5
|
|
});
|
|
|
|
shape.setDrawFunc(function(canvas) {
|
|
var context = canvas.getContext();
|
|
context.beginPath();
|
|
context.moveTo(0, 0);
|
|
context.lineTo(200, 0);
|
|
context.lineTo(200, 100);
|
|
context.closePath();
|
|
canvas.fill(this);
|
|
canvas.stroke(this);
|
|
});
|
|
var rect = new Kinetic.Rect({
|
|
x: 10,
|
|
y: 10,
|
|
width: 100,
|
|
height: 50,
|
|
fill: 'green',
|
|
stroke: 'black',
|
|
strokeWidth: 4,
|
|
draggable: true
|
|
});
|
|
|
|
rect.setDrawFunc(function(canvas) {
|
|
var context = canvas.getContext();
|
|
context.beginPath();
|
|
context.moveTo(0, 0);
|
|
context.lineTo(200, 0);
|
|
context.lineTo(200, 100);
|
|
context.closePath();
|
|
canvas.fill(this);
|
|
canvas.stroke(this);
|
|
});
|
|
|
|
layer.add(shape);
|
|
layer.add(rect);
|
|
stage.add(layer);
|
|
|
|
var dataUrl = layer.toDataURL();
|
|
|
|
//console.log(dataUrl);
|
|
testDataUrl(dataUrl, 'change custom shape draw func', 'problem with setDrawFunc');
|
|
},
|
|
'add star with translated, scaled, rotated fill': function(containerId) {
|
|
var imageObj = new Image();
|
|
imageObj.onload = function() {
|
|
var stage = new Kinetic.Stage({
|
|
container: containerId,
|
|
width: 578,
|
|
height: 200
|
|
});
|
|
var layer = new Kinetic.Layer();
|
|
|
|
var star = new Kinetic.Star({
|
|
x: 200,
|
|
y: 100,
|
|
numPoints: 5,
|
|
innerRadius: 40,
|
|
outerRadius: 70,
|
|
|
|
fillPatternImage: imageObj,
|
|
fillPatternX: -20,
|
|
fillPatternY: -30,
|
|
fillPatternScale: 0.5,
|
|
fillPatternOffset: [219, 150],
|
|
fillPatternRotation: Math.PI * 0.5,
|
|
fillPatternRepeat: 'no-repeat',
|
|
|
|
stroke: 'blue',
|
|
strokeWidth: 5,
|
|
draggable: true
|
|
});
|
|
|
|
layer.add(star);
|
|
stage.add(layer);
|
|
|
|
/*
|
|
var anim = new Kinetic.Animation(function() {
|
|
star.attrs.fill.rotation += 0.02;
|
|
}, layer);
|
|
anim.start();
|
|
*/
|
|
|
|
test(star.getFillPatternX() === -20, 'star fill x should be -20');
|
|
test(star.getFillPatternY() === -30, 'star fill y should be -30');
|
|
test(star.getFillPatternScale().x === 0.5, 'star fill scale x should be 0.5');
|
|
test(star.getFillPatternScale().y === 0.5, 'star fill scale y should be 0.5');
|
|
test(star.getFillPatternOffset().x === 219, 'star fill offset x should be 219');
|
|
test(star.getFillPatternOffset().y === 150, 'star fill offset y should be 150');
|
|
test(star.getFillPatternRotation() === Math.PI * 0.5, 'star fill rotation should be Math.PI * 0.5');
|
|
|
|
star.setFillPatternRotationDeg(180);
|
|
|
|
test(star.getFillPatternRotation() === Math.PI, 'star fill rotation should be Math.PI');
|
|
|
|
star.setFillPatternScale(1);
|
|
|
|
test(star.getFillPatternScale().x === 1, 'star fill scale x should be 1');
|
|
test(star.getFillPatternScale().y === 1, 'star fill scale y should be 1');
|
|
|
|
star.setFillPatternOffset([100, 120]);
|
|
|
|
test(star.getFillPatternOffset().x === 100, 'star fill offset x should be 100');
|
|
test(star.getFillPatternOffset().y === 120, 'star fill offset y should be 120');
|
|
|
|
};
|
|
imageObj.src = '../assets/darth-vader.jpg';
|
|
},
|
|
'test size setters and getters': function(containerId) {
|
|
var stage = new Kinetic.Stage({
|
|
container: containerId,
|
|
width: 578,
|
|
height: 200
|
|
});
|
|
var layer = new Kinetic.Layer();
|
|
|
|
var circle = new Kinetic.Circle({
|
|
x: stage.getWidth() / 2,
|
|
y: stage.getHeight() / 2,
|
|
radius: 50,
|
|
fill: 'red'
|
|
});
|
|
|
|
var ellipse = new Kinetic.Ellipse({
|
|
x: stage.getWidth() / 2,
|
|
y: stage.getHeight() / 2,
|
|
radius: {
|
|
x: 100,
|
|
y: 50
|
|
},
|
|
fill: 'yellow'
|
|
});
|
|
|
|
layer.add(ellipse);
|
|
layer.add(circle);
|
|
stage.add(layer);
|
|
|
|
// circle tests
|
|
test(circle.attrs.width === undefined, 'circle.attrs.width should be undefined');
|
|
test(circle.attrs.height === undefined, 'circle.attrs.height should be undefined');
|
|
test(circle.getWidth() === 100, 'circle width should be 100');
|
|
test(circle.getHeight() === 100, 'circle height should be 100');
|
|
test(circle.getSize().width === 100, 'circle width should be 100');
|
|
test(circle.getSize().height === 100, 'circle height should be 100');
|
|
test(circle.getRadius() === 50, 'circle radius should be 50');
|
|
|
|
circle.setWidth(200);
|
|
|
|
test(circle.attrs.width === 200, 'circle.attrs.width should be 200');
|
|
test(circle.attrs.height === undefined, 'circle.attrs.height should be undefined');
|
|
test(circle.getWidth() === 200, 'circle width should be 200');
|
|
test(circle.getHeight() === 200, 'circle height should be 200');
|
|
test(circle.getSize().width === 200, 'circle width should be 200');
|
|
test(circle.getSize().height === 200, 'circle height should be 200');
|
|
test(circle.getRadius() === 100, 'circle radius should be 100');
|
|
|
|
// ellipse tests
|
|
test(ellipse.attrs.width === undefined, 'ellipse.attrs.width should be undefined');
|
|
test(ellipse.attrs.height === undefined, 'ellipse.attrs.height should be undefined');
|
|
test(ellipse.getWidth() === 200, 'ellipse width should be 200');
|
|
test(ellipse.getHeight() === 100, 'ellipse height should be 100');
|
|
test(ellipse.getSize().width === 200, 'ellipse width should be 200');
|
|
test(ellipse.getSize().height === 100, 'ellipse height should be 100');
|
|
test(ellipse.getRadius().x === 100, 'ellipse radius x should be 100');
|
|
|
|
ellipse.setWidth(400);
|
|
|
|
test(ellipse.attrs.width === 400, 'ellipse.attrs.width should be 400');
|
|
test(ellipse.attrs.height === undefined, 'ellipse.attrs.height should be undefined');
|
|
test(ellipse.getWidth() === 400, 'ellipse width should be 400');
|
|
test(ellipse.getHeight() === 100, 'ellipse height should be 100');
|
|
test(ellipse.getSize().width === 400, 'ellipse width should be 400');
|
|
test(ellipse.getSize().height === 100, 'ellipse height should be 100');
|
|
test(ellipse.getRadius().x === 200, 'ellipse radius x should be 200');
|
|
|
|
},
|
|
'set image fill to color then image then linear gradient then back to image': function(containerId) {
|
|
var imageObj = new Image();
|
|
imageObj.onload = function() {
|
|
var stage = new Kinetic.Stage({
|
|
container: containerId,
|
|
width: 578,
|
|
height: 200
|
|
});
|
|
var layer = new Kinetic.Layer();
|
|
var circle = new Kinetic.Circle({
|
|
x: 200,
|
|
y: 60,
|
|
radius: 50,
|
|
fill: 'blue'
|
|
});
|
|
|
|
layer.add(circle);
|
|
stage.add(layer);
|
|
|
|
test(circle.getFill() === 'blue', 'circle fill should be blue');
|
|
|
|
circle.setFill(null);
|
|
circle.setFillPatternImage(imageObj);
|
|
circle.setFillPatternRepeat('no-repeat');
|
|
circle.setFillPatternOffset([-200, -70]);
|
|
|
|
test(circle.getFillPatternImage() !== undefined, 'circle fill image should be defined');
|
|
test(circle.getFillPatternRepeat() === 'no-repeat', 'circle fill repeat should be no-repeat');
|
|
test(circle.getFillPatternOffset().x === -200, 'circle fill offset x should be -200');
|
|
test(circle.getFillPatternOffset().y === -70, 'circle fill offset y should be -70');
|
|
|
|
circle.setFillPatternImage(null);
|
|
circle.setFillLinearGradientStartPoint(-35);
|
|
circle.setFillLinearGradientEndPoint(35);
|
|
circle.setFillLinearGradientColorStops([0, 'red', 1, 'blue']);
|
|
|
|
circle.setFillLinearGradientStartPoint(null);
|
|
circle.setFillPatternImage(imageObj);
|
|
circle.setFillPatternRepeat('repeat');
|
|
circle.setFillPatternOffset(0);
|
|
|
|
layer.draw();
|
|
};
|
|
imageObj.src = '../assets/darth-vader.jpg';
|
|
},
|
|
'everything enabled': function(containerId) {
|
|
var stage = new Kinetic.Stage({
|
|
container: containerId,
|
|
width: 578,
|
|
height: 200
|
|
});
|
|
var layer = new Kinetic.Layer();
|
|
var circle = new Kinetic.Circle({
|
|
x: stage.getWidth() / 2,
|
|
y: stage.getHeight() / 2,
|
|
radius: 70,
|
|
fill: 'green',
|
|
stroke: 'black',
|
|
strokeWidth: 4,
|
|
shadowColor: 'black',
|
|
shadowBlur: 10,
|
|
shadowOffset: 10,
|
|
dashArray: [10, 10],
|
|
fillEnabled: true,
|
|
strokeEnabled: true,
|
|
shadowEnabled: true,
|
|
dashArrayEnabled: true
|
|
});
|
|
layer.add(circle);
|
|
stage.add(layer);
|
|
|
|
//console.log(layer.toDataURL());
|
|
testDataUrl(layer.toDataURL(), 'everything enabled', 'should be circle with green fill, dashed stroke, and shadow');
|
|
},
|
|
'fill disabled': function(containerId) {
|
|
var stage = new Kinetic.Stage({
|
|
container: containerId,
|
|
width: 578,
|
|
height: 200
|
|
});
|
|
var layer = new Kinetic.Layer();
|
|
var circle = new Kinetic.Circle({
|
|
x: stage.getWidth() / 2,
|
|
y: stage.getHeight() / 2,
|
|
radius: 70,
|
|
fill: 'green',
|
|
stroke: 'black',
|
|
strokeWidth: 4,
|
|
shadowColor: 'black',
|
|
shadowBlur: 10,
|
|
shadowOffset: 10,
|
|
dashArray: [10, 10],
|
|
fillEnabled: false,
|
|
strokeEnabled: true,
|
|
shadowEnabled: true,
|
|
dashArrayEnabled: true
|
|
});
|
|
layer.add(circle);
|
|
stage.add(layer);
|
|
|
|
//console.log(layer.toDataURL());
|
|
testDataUrl(layer.toDataURL(), 'fill disabled', 'should be circle with no fill, dashed stroke, and shadow');
|
|
},
|
|
'stroke disabled': function(containerId) {
|
|
var stage = new Kinetic.Stage({
|
|
container: containerId,
|
|
width: 578,
|
|
height: 200
|
|
});
|
|
var layer = new Kinetic.Layer();
|
|
var circle = new Kinetic.Circle({
|
|
x: stage.getWidth() / 2,
|
|
y: stage.getHeight() / 2,
|
|
radius: 70,
|
|
fill: 'green',
|
|
stroke: 'black',
|
|
strokeWidth: 4,
|
|
shadowColor: 'black',
|
|
shadowBlur: 10,
|
|
shadowOffset: 10,
|
|
dashArray: [10, 10],
|
|
fillEnabled: true,
|
|
strokeEnabled: false,
|
|
shadowEnabled: true,
|
|
dashArrayEnabled: true
|
|
});
|
|
layer.add(circle);
|
|
stage.add(layer);
|
|
|
|
//console.log(layer.toDataURL());
|
|
testDataUrl(layer.toDataURL(), 'stroke disabled', 'should be circle with green fill, no stroke, and shadow');
|
|
},
|
|
'dash array disabled': function(containerId) {
|
|
var stage = new Kinetic.Stage({
|
|
container: containerId,
|
|
width: 578,
|
|
height: 200
|
|
});
|
|
var layer = new Kinetic.Layer();
|
|
var circle = new Kinetic.Circle({
|
|
x: stage.getWidth() / 2,
|
|
y: stage.getHeight() / 2,
|
|
radius: 70,
|
|
fill: 'green',
|
|
stroke: 'black',
|
|
strokeWidth: 4,
|
|
shadowColor: 'black',
|
|
shadowBlur: 10,
|
|
shadowOffset: 10,
|
|
dashArray: [10, 10],
|
|
fillEnabled: true,
|
|
strokeEnabled: true,
|
|
shadowEnabled: true,
|
|
dashArrayEnabled: false
|
|
});
|
|
layer.add(circle);
|
|
stage.add(layer);
|
|
|
|
//console.log(layer.toDataURL());
|
|
testDataUrl(layer.toDataURL(), 'dash array disabled', 'should be circle with green fill, solid stroke, and shadow');
|
|
},
|
|
'shadow disabled': function(containerId) {
|
|
var stage = new Kinetic.Stage({
|
|
container: containerId,
|
|
width: 578,
|
|
height: 200
|
|
});
|
|
var layer = new Kinetic.Layer();
|
|
var circle = new Kinetic.Circle({
|
|
x: stage.getWidth() / 2,
|
|
y: stage.getHeight() / 2,
|
|
radius: 70,
|
|
fill: 'green',
|
|
stroke: 'black',
|
|
strokeWidth: 4,
|
|
shadowColor: 'black',
|
|
shadowBlur: 10,
|
|
shadowOffset: 10,
|
|
dashArray: [10, 10],
|
|
fillEnabled: true,
|
|
strokeEnabled: true,
|
|
shadowEnabled: false,
|
|
dashArrayEnabled: true
|
|
});
|
|
layer.add(circle);
|
|
stage.add(layer);
|
|
|
|
//console.log(layer.toDataURL());
|
|
testDataUrl(layer.toDataURL(), 'shadow disabled', 'should be circle with green fill, dashed stroke, and no shadow');
|
|
},
|
|
'test enablers and disablers': function(containerId) {
|
|
var stage = new Kinetic.Stage({
|
|
container: containerId,
|
|
width: 578,
|
|
height: 200
|
|
});
|
|
var layer = new Kinetic.Layer();
|
|
var circle = new Kinetic.Circle({
|
|
x: stage.getWidth() / 2,
|
|
y: stage.getHeight() / 2,
|
|
radius: 70,
|
|
fill: 'green',
|
|
stroke: 'black',
|
|
strokeWidth: 4,
|
|
shadowColor: 'black',
|
|
shadowBlur: 10,
|
|
shadowOffset: 10,
|
|
dashArray: [10, 10]
|
|
});
|
|
layer.add(circle);
|
|
stage.add(layer);
|
|
|
|
test(circle.getFillEnabled() === true, 'fillEnabled should be true');
|
|
test(circle.getStrokeEnabled() === true, 'strokeEnabled should be true');
|
|
test(circle.getShadowEnabled() === true, 'shadowEnabled should be true');
|
|
test(circle.getDashArrayEnabled() === true, 'dashArrayEnabled should be true');
|
|
|
|
circle.disableFill();
|
|
|
|
test(circle.getFillEnabled() === false, 'fillEnabled should be false');
|
|
test(circle.getStrokeEnabled() === true, 'strokeEnabled should be true');
|
|
test(circle.getShadowEnabled() === true, 'shadowEnabled should be true');
|
|
test(circle.getDashArrayEnabled() === true, 'dashArrayEnabled should be true');
|
|
|
|
circle.disableStroke();
|
|
|
|
test(circle.getFillEnabled() === false, 'fillEnabled should be false');
|
|
test(circle.getStrokeEnabled() === false, 'strokeEnabled should be false');
|
|
test(circle.getShadowEnabled() === true, 'shadowEnabled should be true');
|
|
test(circle.getDashArrayEnabled() === true, 'dashArrayEnabled should be true');
|
|
|
|
circle.disableShadow();
|
|
|
|
test(circle.getFillEnabled() === false, 'fillEnabled should be false');
|
|
test(circle.getStrokeEnabled() === false, 'strokeEnabled should be false');
|
|
test(circle.getShadowEnabled() === false, 'shadowEnabled should be false');
|
|
test(circle.getDashArrayEnabled() === true, 'dashArrayEnabled should be true');
|
|
|
|
circle.disableDashArray();
|
|
|
|
test(circle.getFillEnabled() === false, 'fillEnabled should be false');
|
|
test(circle.getStrokeEnabled() === false, 'strokeEnabled should be false');
|
|
test(circle.getShadowEnabled() === false, 'shadowEnabled should be false');
|
|
test(circle.getDashArrayEnabled() === false, 'dashArrayEnabled should be false');
|
|
|
|
// re-enable
|
|
|
|
circle.enableDashArray();
|
|
|
|
test(circle.getFillEnabled() === false, 'fillEnabled should be false');
|
|
test(circle.getStrokeEnabled() === false, 'strokeEnabled should be false');
|
|
test(circle.getShadowEnabled() === false, 'shadowEnabled should be false');
|
|
test(circle.getDashArrayEnabled() === true, 'dashArrayEnabled should be true');
|
|
|
|
circle.enableShadow();
|
|
|
|
test(circle.getFillEnabled() === false, 'fillEnabled should be false');
|
|
test(circle.getStrokeEnabled() === false, 'strokeEnabled should be false');
|
|
test(circle.getShadowEnabled() === true, 'shadowEnabled should be true');
|
|
test(circle.getDashArrayEnabled() === true, 'dashArrayEnabled should be true');
|
|
|
|
circle.enableStroke();
|
|
|
|
test(circle.getFillEnabled() === false, 'fillEnabled should be false');
|
|
test(circle.getStrokeEnabled() === true, 'strokeEnabled should be true');
|
|
test(circle.getShadowEnabled() === true, 'shadowEnabled should be true');
|
|
test(circle.getDashArrayEnabled() === true, 'dashArrayEnabled should be true');
|
|
|
|
circle.enableFill();
|
|
|
|
test(circle.getFillEnabled() === true, 'fillEnabled should be true');
|
|
test(circle.getStrokeEnabled() === true, 'strokeEnabled should be true');
|
|
test(circle.getShadowEnabled() === true, 'shadowEnabled should be true');
|
|
test(circle.getDashArrayEnabled() === true, 'dashArrayEnabled should be true');
|
|
|
|
},
|
|
'fill overrides': function(containerId) {
|
|
|
|
var stage = new Kinetic.Stage({
|
|
container: containerId,
|
|
width: 578,
|
|
height: 200
|
|
});
|
|
var layer = new Kinetic.Layer();
|
|
|
|
var star = new Kinetic.Star({
|
|
x: 200,
|
|
y: 100,
|
|
numPoints: 5,
|
|
innerRadius: 40,
|
|
outerRadius: 70,
|
|
|
|
fill: 'red',
|
|
fillLinearGradientStartPoint: -35,
|
|
fillLinearGradientEndPoint: 35,
|
|
fillLinearGradientColorStops: [0, 'red', 1, 'blue'],
|
|
|
|
stroke: 'blue',
|
|
strokeWidth: 5,
|
|
draggable: true
|
|
});
|
|
|
|
layer.add(star);
|
|
stage.add(layer);
|
|
|
|
//console.log(layer.toDataURL());
|
|
|
|
testDataUrl(layer.toDataURL(), 'red star', 'star should have red fill');
|
|
|
|
star.setFillPriority('linear-gradient');
|
|
layer.draw();
|
|
|
|
testDataUrl(layer.toDataURL(), 'star with linear gradient fill', 'star should have linear gradient fill');
|
|
|
|
star.setFillPriority('color');
|
|
layer.draw();
|
|
|
|
testDataUrl(layer.toDataURL(), 'red star', 'star should have red fill again');
|
|
|
|
|
|
}
|
|
};
|