GitXplorerGitXplorer
v

react-keyframes

public
621 stars
27 forks
13 issues

Commits

List of commits on branch main.
Verified
7bd885ea39c3a044f88310cd86f446dc1a45521e

ZEIT to Vercel. (#75)

lleerob committed 3 years ago
Verified
3225edbe63fb7eb179f51cc3321ac93c2df073e9

Create license.md (#68)

jjoecohens committed 3 years ago
Verified
760efe0d835f3ebafc95abbed4eff47909aa6ba5

build(deps): bump acorn from 6.4.0 to 6.4.1 (#59)

ddependabot[bot] committed 5 years ago
Unverified
e213456ee6c23f3a7be3c9f866c12cf285598416

v1.0.0-canary.3

ttimneutkens committed 5 years ago
Unverified
185bcd2d95cd1e2d5783b76cb09a11638da0c1b5

v1.0.0-canary.2

ttimneutkens committed 5 years ago
Unverified
6dc118625f18d8061d86135ef84c60b2f10d94a9

Update lerna.json

ttimneutkens committed 5 years ago

README

The README file for this repository.

React Keyframes

A React component for creating frame-based animations.

Demo

Example

The following example will render contents in Frame one at a time every 500 ms.

import { Keyframes, Frame } from "react-keyframes";

function MyComponent() {
  return (
    <Keyframes>
      <Frame duration={500}>This</Frame>
      <Frame duration={500}>This is</Frame>
      <Frame duration={500}>
        This is <em>animated</em>.
      </Frame>
    </Keyframes>
  );
}

Usage

Firstly, install the package:

$ npm install --save react-keyframes

API

Keyframes

<Keyframes { component = 'span' } />

  • Use import { Keyframes } from 'react-keyframes'
  • The component prop specifies what component Keyframes renders as. You can pass the following:
    • a React Component (i.e. <Keyframes component={myComponent} />)
    • a React Fragment (i.e. <Keyframes component={React.Fragment} />)
    • an HTML tag represented as a string (i.e. <Keyframes component='div' />)
    • If nothing is passed, it defaults to "span"
  • Any additional, user-defined properties will become properties of the rendered component.
  • It must have only Frame as children.
  • Example:
import { Component } from 'react';
import { Keyframes, Frame } from 'react-keyframes';

class extends Component {
  render () {
    return <Keyframes component="pre" delay={300} className="animation-test">
      <Frame>foo</Frame>
      <Frame>bar</Frame>
    </Keyframes>;
  }
}

Frame

<Frame { duration = 0 } />

  • Use import { Frame } from 'react-keyframes'
  • The duration prop specifies the length of time that a frame should show (millisecond).
  • You have to put Frame in the order you want them animated.
  • Example:
import { Component } from 'react';
import { Keyframes, Frame } from 'react-keyframes';

class extends Component {
  render () {
    return <Keyframes>
      <Frame duration={100}>foo</Frame>
      <Frame duration={200}>bar</Frame>
    </Keyframes>;
  }
}

Contributing

  • Run npm run build to transpile the source code
  • Before submitting a PR, please run npm run test
  • Please be welcoming

Author

Naoyuki Kanezawa (@nkzawa) - Vercel