Socket
Socket
Sign inDemoInstall

svg.colorat.js

Package Overview
Dependencies
1
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    svg.colorat.js

An extension for svg.js which allows to pick a color from a gradint at a specific position


Version published
Weekly downloads
265
decreased by-73.84%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

svg.colorAt.js

An extension of svg.js which allows to pick a color from a gradint at a specific position

Demo

For a demo see https://jsfiddle.net/wout/sn7um5fr/

Get Started

Install svg.colorAt.js using bower or npm:

bower install svg.colorat.js
npm install svg.colorat.js

Include the script after svg.js

<script src="svg.js"></script>
<script src="svg.colorAt.js"></script>

Use it

<div id="drawing"></div>
var draw = SVG('drawing')

var gradient = draw.gradient('linear', function(stop) {
  stop.at(0, '#799abc')
  stop.at(0.5, '#ccc')
  stop.at(1, '#e88081')
})

var rect = draw.rect(100, 100).move(10, 10).fill(gradient)

draw.circle(10).center(10, 120).fill(gradient.colorAt(0))
draw.circle(10).center(35, 120).fill(gradient.colorAt(0.25))
draw.circle(10).center(60, 120).fill(gradient.colorAt(0.5))
draw.circle(10).center(85, 120).fill(gradient.colorAt(0.75))
draw.circle(10).center(110, 120).fill(gradient.colorAt(1))

Keywords

FAQs

Last updated on 05 Mar 2017

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc