skrollr-css

0.1.1 • Public • Published

skrollr-css

write skrollr animations in a css-like syntax

a command-line tool

installation

$ npm install -g skrollr-css

usage

skrollr-css [source file?] [-o out file] [-w watch]'
  -v  version
  -h  this help text

Supports stdin and stdout, or specify files as arguments

Syntax

Write skrollr animations like css keyframes!

<div id="a" data-0="font-size: 10px" data-30="font-size: 15px" data-100="font-size: 12px"></div>

becomes

@keyframes a {
  0 {
    font-size: 10px;
  }
  30 {
    font-size: 15px;
  }
  100 {
    font-size: 12px;
  }
}

This utility builds the animation into a javascript file which you can include with your webpage - run this after DOM ready but before skrollr.init().

For example, after running $ skrollr-css src.css animation.js, add this to your webpage:

<script src="animation.js"></script>

api

var skrollrCss = require('skrollr-css-')
var css = // ... a css string
 
var animation = skrollrCss(css)
// a built javascript source string which will set the
// animation data properties in the DOM

running the tests

there aren't any

contributors

license

ISC. (c) MMXIV jden jason@denizac.org. See LICENSE.md

Readme

Keywords

Package Sidebar

Install

npm i skrollr-css

Weekly Downloads

2

Version

0.1.1

License

ISC

Last publish

Collaborators