new Shadow()
Shadow class
- Source:
- See:
-
- Shadow demo
- fabric.Shadow#initialize for constructor definition
Members
(static) reOffsetsAndBlur
Regex matching shadow offsetX, offsetY and blur (ex: "2px 2px 10px rgba(0,0,0,0.2)", "rgb(0,255,0) 2px 2px")
affectStroke :Boolean
Whether the shadow should affect stroke operations
Type:
- Boolean
blur :Number
Shadow blur
Type:
- Number
color :String
Shadow color
Type:
- String
includeDefaultValues :Boolean
Indicates whether toObject should include default values
Type:
- Boolean
nonScaling :Boolean
When `false`, the shadow will scale with the object.
When `true`, the shadow's offsetX, offsetY, and blur will not be affected by the object's scale.
default to false
Type:
- Boolean
offsetX :Number
Shadow horizontal offset
Type:
- Number
offsetY :Number
Shadow vertical offset
Type:
- Number
Methods
initialize(optionsopt) → {fabric.Shadow}
Constructor
Parameters:
Name | Type | Attributes | Description |
---|---|---|---|
options |
Object | String |
<optional> |
Options object with any of color, blur, offsetX, offsetY properties or string (e.g. "rgba(0,0,0,0.2) 2px 2px 10px") |
Returns:
thisArg
- Type
- fabric.Shadow
toObject() → {Object}
Returns object representation of a shadow
Returns:
Object representation of a shadow instance
- Type
- Object
toString() → {String}
Returns a string representation of an instance
Returns:
Returns CSS3 text-shadow declaration
- Type
- String
toSVG(object) → {String}
Returns SVG representation of a shadow
Parameters:
Name | Type | Description |
---|---|---|
object |
fabric.Object |
Returns:
SVG representation of a shadow
- Type
- String