Skip to content

nk-components/dom-transform

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
lib
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

dom-transform Build Status

Applies CSS transform properties on an element.

Installation

With npm do:

$ npm install dom-transform --save

Install with component(1):

$ component install nk-components/dom-transform

API

var transform = require('dom-transform');
var el = document.querySelector('div');

transform(el, {
  x: 12,
  y: 10
});

console.log(transform.get(el, 'transform'))
// > 'translateX(12px) translateY(10px)'

console.log(transform.get(el, 'transform'))
// > {
//  'transform': 'translateX(12px) translateY(10px)',
//  'transformOrigin': ''
// }

transform.reset(el);
// > {
//  'transform': '',
//  'transformOrigin': ''
// }

transform(el, {
  translate3d: [10, 10, 10],
  origin: [0, 0]
});

Supported properties:

  • translate:

    • default: px
  • translate3d:

    • default: px
  • translateX:

    • alias: x
    • default: px
  • translateY:

    • alias: y
    • default: px
  • translateZ:

    • alias: z
    • default: px
  • scale

  • scale3d

  • scaleX

  • scaleY

  • scaleZ

  • rotate3d

  • rotate:

    • default: deg
  • rotateX:

    • default: deg
  • rotateY:

    • default: deg
  • rotateZ:

    • default: deg
  • skew:

    • default: deg
  • skewX:

    • default: deg
  • skewY:

    • default: deg
  • matrix

  • matrix3d

  • perspective:

    • default: px
  • origin

More information

License

MIT

About

Applies CSS transform properties on an element

Resources

License

Stars

Watchers

Forks

Packages

No packages published