Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/blivesta/csscallbacks
Callback function of Animation and Transition for CSS with jQuery
https://github.com/blivesta/csscallbacks
Last synced: 3 months ago
JSON representation
Callback function of Animation and Transition for CSS with jQuery
- Host: GitHub
- URL: https://github.com/blivesta/csscallbacks
- Owner: blivesta
- Created: 2014-04-22T15:30:20.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-08-09T18:10:20.000Z (over 9 years ago)
- Last Synced: 2024-09-06T20:32:04.836Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 139 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# csscallbacks
[![npm package](https://img.shields.io/npm/v/csscallbacks.svg?style=flat-square)](https://www.npmjs.com/package/csscallbacks)
[![Build Status](https://img.shields.io/travis/blivesta/csscallbacks/master.svg?style=flat-square)](https://travis-ci.org/blivesta/csscallbacks)
[![Dependency Status](https://david-dm.org/blivesta/csscallbacks.svg?style=flat-square)](https://david-dm.org/blivesta/csscallbacks)Callback function of Animation and Transition for css3 with jquery
## Install
### Download
- [csscallbacks](https://raw.githubusercontent.com/blivesta/csscallbacks/master/dist/csscallbacks.js)### Package managers
```bash
npm i csscallbacks
```### Getting started
#### Link required files
```html```
#### Transition End Callback
```js
$(".hoge").csscallbacks('transitionEnd', function(){
...
});
```
#### Animation Start Callback
```js
$(".hoge").csscallbacks('animationStart', function(){
...
});
```#### Animation End Callback
```js
$(".hoge").csscallbacks('animationEnd', function(){
...
});
```## License
Released under the MIT license.