Git Product home page Git Product logo

svg-line's Introduction

svg-line

Draw a simple svg shape with a line path

Install

Not hosted on npm registry because the name was already taken ⚠️

npm i jeromedecoster/svg-line

API

constructor([options])

Option Action
w svg width
h svg height
d direction of the drawing — top, right, bottom, left
p1 first point
p2 second point
const Line = require('svg-line')

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

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

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

svg()

Return svg node

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

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

path()

Return path value

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

line.p1 = 20
// M0 0 V20 L100 50 V0 z
var path = line.path()

Demo

npm i && npm start

Related

Thanks

Mainly forked / inspired on Codrops and Isaac Montemayor

License

MIT

svg-line'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.