mirror of
https://github.com/konvajs/konva.git
synced 2025-08-24 08:22:02 +08:00
0.8.0
This commit is contained in:
parent
9e1730b38b
commit
63986be549
@ -1,14 +1,14 @@
|
|||||||
## 0.7.1
|
## 0.7.1
|
||||||
|
|
||||||
* Bug Fixes
|
* Bug Fixes
|
||||||
* fixed when browser is crashing on pointer events fixed (and optimized `getIntersection` function)
|
* fixed when browser is crashing on pointer events fixed
|
||||||
|
* optimized `getIntersection` function
|
||||||
* Enhancements
|
* Enhancements
|
||||||
* `container.findOne()` method
|
* `container.findOne()` method
|
||||||
* new `strokeHitEnabled` property. Useful for performance optimizations
|
* new `strokeHitEnabled` property. Useful for performance optimizations
|
||||||
* typescript definitions. see `/resources/konva.d.ts`
|
* typescript definitions. see `/resources/konva.d.ts`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Rebranding release 2015-01-28 (Differents from last official KineticJS release)
|
## Rebranding release 2015-01-28 (Differents from last official KineticJS release)
|
||||||
|
|
||||||
* Bug Fixes
|
* Bug Fixes
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "konva",
|
"name": "konva",
|
||||||
"version": "0.7.1",
|
"version": "0.8.0",
|
||||||
"authors": [
|
"authors": [
|
||||||
"Eric Rowell", "Anton Lavrenov"
|
"Eric Rowell", "Anton Lavrenov"
|
||||||
],
|
],
|
||||||
|
43
konva.js
43
konva.js
@ -1,9 +1,9 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Konva JavaScript Framework v0.7.1
|
* Konva JavaScript Framework v0.8.0
|
||||||
* http://konvajs.github.io/
|
* http://konvajs.github.io/
|
||||||
* Licensed under the MIT or GPL Version 2 licenses.
|
* Licensed under the MIT or GPL Version 2 licenses.
|
||||||
* Date: 2015-02-03
|
* Date: 2015-02-04
|
||||||
*
|
*
|
||||||
* Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS)
|
* Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS)
|
||||||
* Modified work Copyright (C) 2014 - 2015 by Anton Lavrenov (Konva)
|
* Modified work Copyright (C) 2014 - 2015 by Anton Lavrenov (Konva)
|
||||||
@ -36,7 +36,7 @@ var Konva = {};
|
|||||||
|
|
||||||
Konva = {
|
Konva = {
|
||||||
// public
|
// public
|
||||||
version: '0.7.1',
|
version: '0.8.0',
|
||||||
|
|
||||||
// private
|
// private
|
||||||
stages: [],
|
stages: [],
|
||||||
@ -179,6 +179,7 @@ var Konva = {};
|
|||||||
* @param {Integer} [config.strokeBlue] set stroke blue component
|
* @param {Integer} [config.strokeBlue] set stroke blue component
|
||||||
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
||||||
* @param {Number} [config.strokeWidth] stroke width
|
* @param {Number} [config.strokeWidth] stroke width
|
||||||
|
* @param {Boolean} [config.strokeHitEnabled] flag which enables or disables stroke hit region. The default is true
|
||||||
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
||||||
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
||||||
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
||||||
@ -2118,7 +2119,7 @@ var Konva = {};
|
|||||||
this.restore();
|
this.restore();
|
||||||
},
|
},
|
||||||
_stroke: function(shape) {
|
_stroke: function(shape) {
|
||||||
if(shape.hasStroke() && shape.strokeHit()) {
|
if(shape.hasStroke() && shape.strokeHitEnabled()) {
|
||||||
// ignore strokeScaleEnabled for Text
|
// ignore strokeScaleEnabled for Text
|
||||||
var strokeScaleEnabled = (shape.getStrokeScaleEnabled() || (shape instanceof Konva.Text));
|
var strokeScaleEnabled = (shape.getStrokeScaleEnabled() || (shape instanceof Konva.Text));
|
||||||
if (!strokeScaleEnabled) {
|
if (!strokeScaleEnabled) {
|
||||||
@ -8213,25 +8214,25 @@ var Konva = {};
|
|||||||
* shape.strokeWidth();
|
* shape.strokeWidth();
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Konva.Factory.addGetterSetter(Konva.Shape, 'strokeHit', true);
|
Konva.Factory.addGetterSetter(Konva.Shape, 'strokeHitEnabled', true);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* get/set stroke hit property. Useful for performance optimization.
|
* get/set strokeHitEnabled property. Useful for performance optimization.
|
||||||
* You may set `shape.strokeHit(false)`. In this case stroke will be no draw on hit canvas, so hit area
|
* You may set `shape.strokeHitEnabled(false)`. In this case stroke will be no draw on hit canvas, so hit area
|
||||||
* of shape will be decreased (by lineWidth / 2). Remember that non closed line with `strokeHit = false`
|
* of shape will be decreased (by lineWidth / 2). Remember that non closed line with `strokeHitEnabled = false`
|
||||||
* will be not drawn on hit canvas, that is mean line will no trigger pointer events (like mouseover)
|
* will be not drawn on hit canvas, that is mean line will no trigger pointer events (like mouseover)
|
||||||
* Default value is true
|
* Default value is true
|
||||||
* @name strokeHit
|
* @name strokeHitEnabled
|
||||||
* @method
|
* @method
|
||||||
* @memberof Konva.Shape.prototype
|
* @memberof Konva.Shape.prototype
|
||||||
* @param {Boolean} strokeHit
|
* @param {Boolean} strokeHitEnabled
|
||||||
* @returns {Boolean}
|
* @returns {Boolean}
|
||||||
* @example
|
* @example
|
||||||
* // get strokeHit
|
* // get strokeHitEnabled
|
||||||
* var strokeHit = shape.strokeHit();
|
* var strokeHitEnabled = shape.strokeHitEnabled();
|
||||||
*
|
*
|
||||||
* // set strokeHit
|
* // set strokeHitEnabled
|
||||||
* shape.strokeHit();
|
* shape.strokeHitEnabled();
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Konva.Factory.addGetterSetter(Konva.Shape, 'lineJoin');
|
Konva.Factory.addGetterSetter(Konva.Shape, 'lineJoin');
|
||||||
@ -10627,6 +10628,7 @@ var Konva = {};
|
|||||||
* @param {Integer} [config.strokeBlue] set stroke blue component
|
* @param {Integer} [config.strokeBlue] set stroke blue component
|
||||||
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
||||||
* @param {Number} [config.strokeWidth] stroke width
|
* @param {Number} [config.strokeWidth] stroke width
|
||||||
|
* @param {Boolean} [config.strokeHitEnabled] flag which enables or disables stroke hit region. The default is true
|
||||||
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
||||||
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
||||||
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
||||||
@ -10787,6 +10789,7 @@ var Konva = {};
|
|||||||
* @param {Integer} [config.strokeBlue] set stroke blue component
|
* @param {Integer} [config.strokeBlue] set stroke blue component
|
||||||
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
||||||
* @param {Number} [config.strokeWidth] stroke width
|
* @param {Number} [config.strokeWidth] stroke width
|
||||||
|
* @param {Boolean} [config.strokeHitEnabled] flag which enables or disables stroke hit region. The default is true
|
||||||
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
||||||
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
||||||
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
||||||
@ -11085,6 +11088,7 @@ var Konva = {};
|
|||||||
* @param {Integer} [config.strokeBlue] set stroke blue component
|
* @param {Integer} [config.strokeBlue] set stroke blue component
|
||||||
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
||||||
* @param {Number} [config.strokeWidth] stroke width
|
* @param {Number} [config.strokeWidth] stroke width
|
||||||
|
* @param {Boolean} [config.strokeHitEnabled] flag which enables or disables stroke hit region. The default is true
|
||||||
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
||||||
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
||||||
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
||||||
@ -11270,6 +11274,7 @@ var Konva = {};
|
|||||||
* @param {Integer} [config.strokeBlue] set stroke blue component
|
* @param {Integer} [config.strokeBlue] set stroke blue component
|
||||||
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
||||||
* @param {Number} [config.strokeWidth] stroke width
|
* @param {Number} [config.strokeWidth] stroke width
|
||||||
|
* @param {Boolean} [config.strokeHitEnabled] flag which enables or disables stroke hit region. The default is true
|
||||||
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
||||||
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
||||||
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
||||||
@ -11455,6 +11460,7 @@ var Konva = {};
|
|||||||
* @param {Integer} [config.strokeBlue] set stroke blue component
|
* @param {Integer} [config.strokeBlue] set stroke blue component
|
||||||
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
||||||
* @param {Number} [config.strokeWidth] stroke width
|
* @param {Number} [config.strokeWidth] stroke width
|
||||||
|
* @param {Boolean} [config.strokeHitEnabled] flag which enables or disables stroke hit region. The default is true
|
||||||
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
||||||
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
||||||
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
||||||
@ -11658,6 +11664,7 @@ var Konva = {};
|
|||||||
* @param {Integer} [config.strokeBlue] set stroke blue component
|
* @param {Integer} [config.strokeBlue] set stroke blue component
|
||||||
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
||||||
* @param {Number} [config.strokeWidth] stroke width
|
* @param {Number} [config.strokeWidth] stroke width
|
||||||
|
* @param {Boolean} [config.strokeHitEnabled] flag which enables or disables stroke hit region. The default is true
|
||||||
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
||||||
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
||||||
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
||||||
@ -11966,6 +11973,7 @@ var Konva = {};
|
|||||||
* @param {Integer} [config.strokeBlue] set stroke blue component
|
* @param {Integer} [config.strokeBlue] set stroke blue component
|
||||||
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
||||||
* @param {Number} [config.strokeWidth] stroke width
|
* @param {Number} [config.strokeWidth] stroke width
|
||||||
|
* @param {Boolean} [config.strokeHitEnabled] flag which enables or disables stroke hit region. The default is true
|
||||||
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
||||||
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
||||||
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
||||||
@ -12494,6 +12502,7 @@ var Konva = {};
|
|||||||
* @param {Integer} [config.strokeBlue] set stroke blue component
|
* @param {Integer} [config.strokeBlue] set stroke blue component
|
||||||
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
||||||
* @param {Number} [config.strokeWidth] stroke width
|
* @param {Number} [config.strokeWidth] stroke width
|
||||||
|
* @param {Boolean} [config.strokeHitEnabled] flag which enables or disables stroke hit region. The default is true
|
||||||
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
||||||
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
||||||
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
||||||
@ -12776,6 +12785,7 @@ var Konva = {};
|
|||||||
* @param {Integer} [config.strokeBlue] set stroke blue component
|
* @param {Integer} [config.strokeBlue] set stroke blue component
|
||||||
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
||||||
* @param {Number} [config.strokeWidth] stroke width
|
* @param {Number} [config.strokeWidth] stroke width
|
||||||
|
* @param {Boolean} [config.strokeHitEnabled] flag which enables or disables stroke hit region. The default is true
|
||||||
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
||||||
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
||||||
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
||||||
@ -13191,6 +13201,7 @@ var Konva = {};
|
|||||||
* @param {Integer} [config.strokeBlue] set stroke blue component
|
* @param {Integer} [config.strokeBlue] set stroke blue component
|
||||||
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
||||||
* @param {Number} [config.strokeWidth] stroke width
|
* @param {Number} [config.strokeWidth] stroke width
|
||||||
|
* @param {Boolean} [config.strokeHitEnabled] flag which enables or disables stroke hit region. The default is true
|
||||||
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
||||||
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
||||||
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
||||||
@ -13902,6 +13913,7 @@ var Konva = {};
|
|||||||
* @param {Integer} [config.strokeBlue] set stroke blue component
|
* @param {Integer} [config.strokeBlue] set stroke blue component
|
||||||
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
||||||
* @param {Number} [config.strokeWidth] stroke width
|
* @param {Number} [config.strokeWidth] stroke width
|
||||||
|
* @param {Boolean} [config.strokeHitEnabled] flag which enables or disables stroke hit region. The default is true
|
||||||
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
||||||
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
||||||
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
||||||
@ -14382,6 +14394,7 @@ var Konva = {};
|
|||||||
* @param {Integer} [config.strokeBlue] set stroke blue component
|
* @param {Integer} [config.strokeBlue] set stroke blue component
|
||||||
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
||||||
* @param {Number} [config.strokeWidth] stroke width
|
* @param {Number} [config.strokeWidth] stroke width
|
||||||
|
* @param {Boolean} [config.strokeHitEnabled] flag which enables or disables stroke hit region. The default is true
|
||||||
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
||||||
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
||||||
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
||||||
@ -14550,6 +14563,7 @@ var Konva = {};
|
|||||||
* @param {Integer} [config.strokeBlue] set stroke blue component
|
* @param {Integer} [config.strokeBlue] set stroke blue component
|
||||||
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
||||||
* @param {Number} [config.strokeWidth] stroke width
|
* @param {Number} [config.strokeWidth] stroke width
|
||||||
|
* @param {Boolean} [config.strokeHitEnabled] flag which enables or disables stroke hit region. The default is true
|
||||||
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
||||||
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
||||||
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
||||||
@ -15077,6 +15091,7 @@ var Konva = {};
|
|||||||
* @param {Integer} [config.strokeBlue] set stroke blue component
|
* @param {Integer} [config.strokeBlue] set stroke blue component
|
||||||
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
* @param {Integer} [config.strokeAlpha] set stroke alpha component
|
||||||
* @param {Number} [config.strokeWidth] stroke width
|
* @param {Number} [config.strokeWidth] stroke width
|
||||||
|
* @param {Boolean} [config.strokeHitEnabled] flag which enables or disables stroke hit region. The default is true
|
||||||
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
* @param {Boolean} [config.strokeScaleEnabled] flag which enables or disables stroke scale. The default is true
|
||||||
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
* @param {Boolean} [config.strokeEnabled] flag which enables or disables the stroke. The default value is true
|
||||||
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
* @param {String} [config.lineJoin] can be miter, round, or bevel. The default
|
||||||
|
6
konva.min.js
vendored
6
konva.min.js
vendored
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "konva",
|
"name": "konva",
|
||||||
"version": "0.7.1",
|
"version": "0.8.0",
|
||||||
"author": "Anton Lavrenov",
|
"author": "Anton Lavrenov",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"chai": "1.9.2",
|
"chai": "1.9.2",
|
||||||
|
@ -535,9 +535,9 @@ suite('Shape', function() {
|
|||||||
// ======================================================
|
// ======================================================
|
||||||
test.skip('fill and stroke with shadow and opacity', function(){
|
test.skip('fill and stroke with shadow and opacity', function(){
|
||||||
var stage = addStage();
|
var stage = addStage();
|
||||||
stage.bufferCanvas2._canvas.style.position = 'relative';
|
// stage.bufferCanvas2._canvas.style.position = 'relative';
|
||||||
|
|
||||||
document.body.appendChild(stage.bufferCanvas2._canvas);
|
// document.body.appendChild(stage.bufferCanvas2._canvas);
|
||||||
|
|
||||||
stage.bufferCanvas._canvas.style.position = 'relative';
|
stage.bufferCanvas._canvas.style.position = 'relative';
|
||||||
|
|
||||||
@ -569,11 +569,10 @@ suite('Shape', function() {
|
|||||||
|
|
||||||
var trace = layer.getContext().getTrace();
|
var trace = layer.getContext().getTrace();
|
||||||
console.log(trace);
|
console.log(trace);
|
||||||
// assert.equal(trace, 'clearRect(0,0,578,200);save();save();globalAlpha=0.25;shadowColor=black;shadowBlur=10;shadowOffsetX=10;shadowOffsetY=10;drawImage([object HTMLCanvasElement],0,0);restore();globalAlpha=0.5;drawImage([object HTMLCanvasElement],0,0);restore();');
|
|
||||||
|
|
||||||
var canvas = createCanvas();
|
var canvas = createCanvas();
|
||||||
var context = canvas.getContext('2d');
|
var context = canvas.getContext('2d');
|
||||||
context.globalAlpha = 0.5;
|
context.globalAlpha = 0.60;
|
||||||
|
|
||||||
// draw shadow
|
// draw shadow
|
||||||
context.save();
|
context.save();
|
||||||
@ -588,6 +587,7 @@ suite('Shape', function() {
|
|||||||
context.restore();
|
context.restore();
|
||||||
|
|
||||||
// draw "stroke"
|
// draw "stroke"
|
||||||
|
context.save();
|
||||||
context.beginPath();
|
context.beginPath();
|
||||||
context.moveTo(100,50);
|
context.moveTo(100,50);
|
||||||
context.lineTo(200,50);
|
context.lineTo(200,50);
|
||||||
@ -599,17 +599,7 @@ suite('Shape', function() {
|
|||||||
context.stroke();
|
context.stroke();
|
||||||
context.fillStyle = 'green';
|
context.fillStyle = 'green';
|
||||||
context.fillRect(105, 55, 90, 40);
|
context.fillRect(105, 55, 90, 40);
|
||||||
|
context.restore();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// // clear the shadow
|
|
||||||
// context.shadowColor = 0;
|
|
||||||
// context.shadowOffsetX = 0;
|
|
||||||
// context.shadowOffsetY = 0;
|
|
||||||
// context.shadowBlur = 0;
|
|
||||||
//
|
|
||||||
// // restroke without the shaodw
|
|
||||||
// context.stroke();
|
// context.stroke();
|
||||||
// console.log(layer.getContext().getTrace());
|
// console.log(layer.getContext().getTrace());
|
||||||
compareLayerAndCanvas(layer, canvas, 10);
|
compareLayerAndCanvas(layer, canvas, 10);
|
||||||
|
Loading…
Reference in New Issue
Block a user