1.0.4 • Published 10 months ago

garevna-canvas v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

Canvas drawing

Images or texts are ‘assembled’ from pixels.

When clicked, they are ‘scattered’ into pixels.

👀 demo

Install package

yarn add garevna-package

Import package

import 'garevna-package'

Create and Config

const canvas = document.createElement('canvas-element')

If you do not configure the component, it will work with default settings.

You can set the colour of the backgound (transparent by default), for texts - font size and font family.

You can specify two texts, or two images, or one text and one image in the settings, so that when you click, one text is replaced by the other.

☕ For example, two texts:

canvas.options = {
  startWith: {
    type: 'text',
    src: '✈'
  },
  switchTo: {
    type: 'text',
    src: '❤'
  },
  fontSize: 90,
  fontFamily: 'Verdana, Geneva, Sans-Serif',
  background: 'transparent'
}

document.body.appendChild(canvas)

☕ Image and text:

const { image } = require('./configs').default

const canvas = document.createElement('canvas-element')

canvas.options = {
  startWith: {
    type: 'image',
    src: image
  },
  switchTo: {
    type: 'text',
    src: 'JS'
  },
  fontSize: 90,
  fontFamily: 'Verdana, Geneva, Sans-Serif',
  background: 'transparent'
}

document.body.appendChild(canvas)

⚠️ The image should be in base64 format (data:image/png;base64,...)

You can convert your image to base64 format online.

1.0.4

10 months ago

1.0.1

10 months ago

1.0.0

10 months ago