• Stars
    star
    130
  • Rank 275,944 (Top 6 %)
  • Language
    CoffeeScript
  • License
    Other
  • Created about 10 years ago
  • Updated about 10 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A GSAP plugin for tweening React.js component state.

GSAP React Plugin

A GSAP plugin for tweening React.js component state.

This plugin will handle tweening values on a prop called state. If the tween target does not have a setState method, the plugin will not initialize.

Usage

React.createClass({
    getInitialState: function() {
        return {width: 0};
    },
    componentDidMount: function() {
        TweenLite.to(this, 1, {state: {width: 100}});
    },
    render: function() {
        return <div style={{width: this.state.width}}>Hello World!</div>
    }
});

Installation

More Repositories

1

react-imageloader

A React component for wrangling image loading
JavaScript
353
star
2

django-enumfields

Real Python Enums for Django
Python
145
star
3

react-google-analytics

Google analytics component
CoffeeScript
111
star
4

django-staticbuilder

Add a build step to your static asset flow.
Python
76
star
5

django-ecstatic

An expansion pack for django.contrib.staticfiles!
Python
70
star
6

django-periodically

Python
39
star
7

reactdi

Dependency injection for ReactJS components.
CoffeeScript
27
star
8

react-pressable

Add onRelease, onReleaseInside, onReleaseOutside, and onPress events to a component
JavaScript
18
star
9

react-controlfacades

Style form controls but use their default behavior
JavaScript
13
star
10

urllite.js

A tiny, tiny URL parser.
JavaScript
11
star
11

react-loadqueueloader

A React component for managing loads with a load queue
CoffeeScript
11
star
12

react-loadermixin

A React mixin for giving components loading behavior
CoffeeScript
10
star
13

bedrock

a highly unopinionated and minimal front-end toolset built in LESS
CSS
7
star
14

django-galleries

The main django-galleries project.
Python
6
star
15

django-modeltools

Enums in your models, template strings for FileField names…
Python
5
star
16

django-mailmate

Define emails with classes and use templates for HTML emails.
Python
5
star
17

react-code39svg.js

Render Code 39 Barcodes as SVGs with React
JavaScript
4
star
18

linter-configs

A repository of config files for all the linters we use
JavaScript
4
star
19

react-qrsvg.js

Render QR codes as SVGs with React
JavaScript
3
star
20

timeout-after.js

Easily add timeouts to any function
JavaScript
3
star
21

cas-maestro

WordPress.org Plugin Mirror
PHP
3
star
22

django-google-search

Django app to show google site search results
Python
3
star
23

queueup.js

A promise-based JavaScript asset loader.
JavaScript
2
star
24

dirtyhex

Hexadecimal Naughtiness
2
star
25

django-combocache

Write-through caching for Django
Python
1
star
26

django-memcachedkeys

Sanitize your keys, please.
Python
1
star
27

disallow-new.js

Don't let people use "new" on your function
JavaScript
1
star
28

drf-url-content-type-override

Python
1
star
29

as-factory.js

Create factory functions from classes!
JavaScript
1
star
30

fabric-envclasses

Set up your fabric environments with a more declarative syntax
Python
1
star