Git Product home page Git Product logo

svg-quad's Introduction

svg-quad

Draw a simple svg shape with a quadratic path

Install

npm i svg-quad

API

constructor([options])

Option Action
w svg width
h svg height
d direction of the drawing โ€” top, right, bottom, left
p1 first point
p2 anchor
const Quad = require('svg-quad')

var quad = new Quad({p1:10, p2:50, w:100, h:200})

// also allowed
var quad = Quad({p1:10, p2:50, w:100, h:200})

// all options are also accessible via getter/setter
quad.d = 'top'
quad.p1 = 100

svg()

Return svg node

var quad = Quad({p1:10, p2:50, w:100, h:200})

/*
<svg viewBox="0 0 100 200" preserveAspectRatio="none">
  <path d="M0 0 V10 Q50 50 100 10 V0 z"></path>
</svg>
*/
var svg = quad.svg()

path()

Return path value

var quad = Quad({p1:10, p2:50, w:100, h:200})

quad.p1 = 20
// M0 0 V20 Q50 50 100 20 V0 z
var path = quad.path()

Demo

npm i && npm start

Related

Thanks

Mainly forked / inspired on Codrops and Isaac Montemayor

License

MIT

svg-quad's People

Contributors

jeromedecoster avatar

Watchers

 avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.