Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
gradient-svg
Advanced tools
This module creates svg gradient output for gradient.js modules.
gradient.js is a javascript module that takes your source colors array and configuration object, and returns a gradient suitable for your needs.
const svg = new Svg()
const gradient = svg.get([
[100, 34, 230, 0.5],
[10, 33, 20, 0.6],
[1, 12, 12, 0.3]
],{
base: {
interpolation: 'linear',
mode: 'rgb',
samples: 40,
lightnessCorrection: true
},
svg: {
type: 'radial',
cx: 0.5,
cy: 0.5,
r: 0.3,
spreadMethod: 'reflect'
}
},
/* third parameter - raw - is by default set to false, so it returns the svg gradient element.
Set to true if you want to get an object. */
)
{
type: 'linear' | 'radial'
id: sting // gradient's unique identifier
angle?: number // between 0 and 359
x1?: number // linear gradient's first point's position on the x axis
y1?: number // linear gradient's first point's position on the y axis
x2? number // linear gradient's second point's position on the x axis
y2?: number // linear gradient's second point's position on the y axis
cx?: number // radial gradient's center point position on the x axis
cy?: number // radial gradient's center point position on the y axis
r?: number // radial gradient's radius
fx?: number // radial gradient's focal point position on the x axis
fy?: number // radial gradient's focal point position on the y axis
spreadMethod?: 'pad' | 'repeat' | 'reflect'
gradientUnits?: 'objectBoundingBox' | 'userSpaceOnUse'
}
FAQs
Svg module of the gradient.js library
We found that gradient-svg demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.