Socket
Book a DemoInstallSign in
Socket

svg-grid-resizable

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

svg-grid-resizable

Make an svg element resizable inside the confines of a fixed grid

latest
Source
npmnpm
Version
3.0.0
Version published
Maintainers
1
Created
Source

svg-grid-resizable

WIP

Make an svg element resizable inside the confines of a fixed grid.

Usage

Using this library to move svg-midi-notes inside a svg-midi-grid:

const html = require('bel')
const morph = require('nanomorph')
const Note = require('svg-midi-note')
const Grid = require('svg-midi-grid')
const Resizable = require('svg-grid-resizable')

const note = Note()
const resizable = Resizable()
const grid = new Grid()

const cellHeight = 10
const cellWidth = 20

const state = {
  height: cellHeight,
  width: cellWidth
}

const onresize = ({ height, width }) => {
  console.log(height, width)
  state.height = height
  state.width = width
  console.log('state', state)
  update()
}

const render = () => html`
  <svg width=400 height=200>
    ${grid.render({ height: 201, width: 401, cellHeight, cellWidth })}
    ${resizable.render({
      cellWidth,
      height: state.height,
      width: state.width,
      onresize,
      el: ({ height, width }) => note.render({
        height,
        width,
        velocity: 1
      })
    })}
  </svg>
`

const update = () => morph(el, render())
const el = render()
document.body.appendChild(el)

Installation

$ npm install svg-grid-resizable

License

MIT

FAQs

Package last updated on 01 May 2017

Did you know?

Socket

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