npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@ff0000-ad-tech/ad-canvas

v1.4.2

Published

[![npm (tag)](https://img.shields.io/npm/v/@ff0000-ad-tech%2Fad-canvas.svg?style=flat-square)](https://www.npmjs.com/package/@ff0000-ad-tech%2Fad-canvas) [![GitHub issues](https://img.shields.io/github/issues/ff0000-ad-tech/ad-canvas.svg?style=flat-square

Downloads

32

Readme

RED Interactive Agency - Ad Technology

npm (tag) GitHub issues npm downloads

GitHub contributors GitHub commit-activity npm license PRs Welcome


Ad Canvas

This lightweight package is a simple-to-use tool that makes it easy to create animation, masking, layering, blend modes, and drawing all sorts of graphical content, such as:

  • Vector paths
  • Shapes
  • Bitmaps
  • Videos
  • Text

Read more about some of the ways this framework compares to vanilla javascript in the Why CanvasDrawer? section.

Getting Started

Canvas Elements

Features

Tweening

Getting Started

It may be beneficial to familiarize yourself with the syntax of ad-ui, as there are many similarities. Or, this can be your stepping stone to ad-ui!

CanvasDrawer

Make a new CanvasDrawer instance - this instance will house whatever elements you create

let myCanvasDrawer = new CanvasDrawer({
    target: myDomElement,
    css: {
        width: 300,
        height: 250
    },
    debug: true,
    retina: true
})

In this example, we create a new UICanvas DOM element (which can be referenced as myCanvasDrawer.canvas). Setting retina: true means the canvas will render at double-density. Setting debug: true adds a background color so that we can see the canvas element, which is transparent otherwise.

Rendering

CanvasDrawer has an update() method which must be called any time you make a change and want to see it.

CanvasElements

A CanvasElement is the broad term for anything that is drawn within the CanvasDrawer framework. It refers to:

Example

Draw a bitmap data into a CanvasDrawer. In this example, the source is referenced by the name of the bitmap, as ID'd by ImageManager - this might be "myBitmap.png"` for instance.

let myImage = new CanvasImage({
    target: myCanvasDrawer,
    id: 'myCanvasImage'
    source: "myBitmap",
    params: {
        width: 300,
        height: 250
    }
})

// setting the alpha by ID
myCanvasDrawer.elements.myCanvasImage.alpha = 0.5

// setting the alpha by variable
myImage.alpha = 0.5

// re-render the CanvasDrawer to ensure update is seen
myCanvasDrawer.update()

Features

These CanvasElements can have features such as:

  • drop shadows
  • rotation, scale, alpha
  • strokes

There are also additional classes that, if imported, will open up other features to you, such as:

Tweening

Tweening a CanvasElement is as easy as initializing it through CanvasTweener - it's an additional load that you might not want, so we give you the option.

// injects tweening capability into a CanvasDrawer instance
CanvasTweener.init(myCanvasDrawer)

// call the CanvasElement to tween by a variable definition
myCanvasDrawer.tween.to(myImage, 2, { rotation: 90, alpha: 0 })
// call the CanvasElement to tween by an ID
myCanvasDrawer.tween.to("myCanvasImage", 2, { rotation: 90, alpha: 0 })

myCanvasDrawer.tween.fromTo(myShape, 2, { scale: 0 }, { scale: 1, ease: Back.easeOut })

myCanvasDrawer.tween.start()

This tween object that is part of your CanvasDrawer instance uses the same format as GreenSock's Tween Package. However, since HTML5 canvas requires refreshing in order to render changes, CanvasTweener takes care of that for us without having to write update() calls elsewhere. The myCanvasDrawer.tween.start() method ensures these tweens don't begin until we're ready to call all of them.

Why CanvasDrawer?

It's a lightweight package!

  • Using every nook and cranny the CanvasDrawer suite has to offer only adds an additional 40k to your file size.
  • Compare that to other packages which are 150k or higher, and you have a fast-loading platform with powerful features giving you the best possible tools for quick development and stunning animations.

The grunt-work has been done for you

  • The classes that allow for blurring, color transformations, etc are there to save you, the user, the effort of researching how to build and keep track of these effects.

Animations are straightfoward

  • With vanilla Canvas2D, animation becomes complicated. There are no native object declarations or stored values: you must work that logic out yourself, and constantly call verbose code in order to render graphics.

Compare some vanilla canvas drawing to how it might look using CanvasDrawer:

// any time you want to draw the image at a different X, Y, width, or height, 
// you need to clear your canvas ...
ctx.clearRect(0, 0, 100, 200)

// and if you want to scale, rotate, or change the alpha, that's another kind of logic 
// you must develop code for and
manage yourself
ctx.save()
ctx.globalAlpha = 0.5
ctx.rotate(Math.PI)
ctx.restore()

// finally, make a verbose call to the context to draw all images you may have created
ctx.drawImage(img1, 10, 10, 100, 200)
ctx.drawImage(img2, 0, 0, 50, 50)
ctx.drawImage(img3, 100, 30, 60, 60)

// and how do you animate this? How do you get your image to move its x-coordinate using TweenLite?
TweenLite.to(???, 1, {x: 200, onUpdate: function(){
    ctx.clearRect(...)
    ctx.drawImage(...)
}})
// sounds exhausting, and you're going erase every other image you added unless you put in 
// additional conditions to re-draw them.

CanvasDrawer makes the simple act or redrawing and moving elements easy, saving you file size and processing by packaging the creation and storage of a canvas' drawable data in objects easy to manipulate:

myCanvasImage1.x = 10
myCanvasImage2.rotation = 20
myCanvasImage3.alpha = 0.5

myCanvasDrawer.tween.to(myCanvasImage1, 1, { x: 200 })
myCanvasDrawer.tween.start()
// easy peasy, lemon squeezy

API

CanvasBlendMode

  • .NONE : string
  • .UNDER : string
  • .SOURCE_IN : string
  • .SOURCE_OUT : string
  • .SOURCE_ATOP : string
  • .DEST_IN : string
  • .DEST_OUT : string
  • .DEST_ATOP : string
  • .XOR : string
  • .COPY : string
  • .ADD : string
  • .DARKEN : string
  • .LIGHTEN : string
  • .OVERLAY : string
  • .MULTIPLY : string
  • .SCREEN : string
  • .DODGE : string
  • .BURN : string
  • .HARD : string
  • .SOFT : string
  • .DIFFERENCE : string
  • .EXCLUSION : string
  • .HUE : string
  • .SATURATION : string
  • .COLOR : string
  • .LUMINOSITY : string

CanvasBlur

  • .set(obj)

CanvasCircle

  • new CanvasCircle(circObj)
  • .x : number
  • .y : number
  • .width : number
  • .radius : number
  • .rotation : number
  • .alpha : number
  • .scale : number
  • .scaleX : number
  • .scaleY : number
  • .blendMode : number
  • .visible : boolean
  • .transformOrigin : string
  • .fill : string
  • .strokeFill : string
  • .strokeWidth : number
  • .strokeCap : string
  • .strokeJoin : string
  • .strokePosition : string
  • .strokeDashSize : number
  • .strokeDashGap : number
  • .strokeDashOffset : number
  • .shadowColor : string
  • .shadowBlur : number
  • .shadowAngle : number
  • .shadowDistance : number
  • .id : string

CanvasColoring

  • .hue(obj)
  • .saturation(obj)
  • .contrast(obj)
  • .tint(obj)
  • .transform(obj)
  • .invert(obj)

CanvasDisplaceChannel

  • .RED : number
  • .GREEN : number
  • .BLUE : number
  • .ALPHA : number

CanvasDisplacementMap

  • new CanvasDisplacementMap(imgObj)
  • .source : CanvasDrawer | UICanvas | canvas
  • .map : CanvasDrawer | UICanvas | canvas
  • .target : CanvasDrawer | UICanvas | canvas
  • .x : number
  • .y : number
  • .scaleX : number
  • .scaleY : number
  • .channelX : CanvasDisplaceChannel | number
  • .channelY : CanvasDisplaceChannel | number
  • .draw()

CanvasDrawer

  • new CanvasDrawer(arg)
  • .canvas : UICanvas
  • .ctx
  • .clearCanvas : boolean
  • .qualityScale : number
  • .elements : object
  • .elementsLength : number
  • .width : number
  • .height : number
  • .removeElement(target)
  • .removeAllElements()
  • .clear()
  • .update()

CanvasElement

  • new CanvasElement()

CanvasImage

  • new CanvasImage(imgObj)
  • .x : number
  • .y : number
  • .width : number
  • .sourceX : number
  • .sourceY : number
  • .sourceW : number
  • .sourceH : number
  • .height : number
  • .rotation : number
  • .alpha : number
  • .scale : number
  • .scaleX : number
  • .scaleY : number
  • .blendMode : number
  • .visible : number
  • .transformOrigin : string
  • .shadowColor : string
  • .shadowBlur : number
  • .shadowAngle : number
  • .shadowDistance : number
  • .id : string

CanvasLineTo

  • .MOVE : string
  • .LINE : string
  • .QUAD : string
  • .BEZIER : string
  • .ARC : string

CanvasPath

  • new CanvasPath(pathObj)
  • .x : number
  • .y : number
  • .rotation : number
  • .alpha : number
  • .scale : number
  • .scaleX : number
  • .scaleY : number
  • .blendMode : number
  • .visible : boolean
  • .length : number
  • .transformOrigin : string
  • .fill : string
  • .strokeFill : string
  • .strokeWidth : number
  • .strokeCap : string
  • .strokeJoin : string
  • .strokePosition : string
  • .strokeDashSize : number
  • .strokeDashGap : number
  • .strokeDashOffset : number
  • .shadowColor : string
  • .shadowBlur : number
  • .shadowAngle : number
  • .shadowDistance : number
  • .id : string
  • .width : number
  • .height : number

CanvasRect

  • new CanvasRect(rectObj)
  • .x : number
  • .left : number
  • .y : number
  • .top : number
  • .width : number
  • .height : number
  • .rotation : number
  • .alpha : number
  • .opacity : number
  • .scale : number
  • .scaleX : number
  • .scaleY : number
  • .blendMode : number
  • .visible : number
  • .transformOrigin : string
  • .fill : string
  • .strokeFill : string
  • .strokeWidth : number
  • .strokeCap : string
  • .strokeJoin : string
  • .strokePosition : string
  • .strokeDashSize : number
  • .strokeDashGap : number
  • .strokeDashOffset : number
  • .shadowColor : string
  • .shadowBlur : number
  • .shadowAngle : number
  • .shadowDistance : number
  • .id : string

CanvasShape

  • new CanvasShape()

CanvasSprite

  • new CanvasSprite()

CanvasText

  • new CanvasText(textObj)
  • .x : number
  • .left : number
  • .y : number
  • .top : number
  • .rotation : number
  • .alpha : number
  • .opacity : number
  • .scale : number
  • .scaleX : number
  • .scaleY : number
  • .blendMode : number
  • .visible : boolean
  • .transformOrigin : string
  • .fontFamily : string
  • .fontSize : number
  • .lineHeight : number
  • .maxWidth : number
  • .alignText : string
  • .fill : string
  • .strokeFill : string
  • .strokeWidth : number
  • .strokeJoin : string
  • .strokePosition : string
  • .strokeDashSize : number
  • .strokeDashGap : number
  • .strokeDashOffset : number
  • .shadowColor : string
  • .shadowBlur : number
  • .shadowAngle : number
  • .shadowDistance : number
  • .id : string
  • .width : number
  • .height : number

CanvasTexture

  • .makeLinearGradient(args)
  • .makeRadialGradient(args)
  • .makePattern(args)

CanvasTiling

  • .X : string
  • .Y : string
  • .XY : string
  • .NONE : string

CanvasTweener

  • .tween : object
  • .init(target)
  • .start(args)
  • .kill()

CanvasUtils

  • .getImageData(source)
  • .setImageData(target, data)