PHPMailer6
auswertung
bootstrap
data-table
dist
node_modules
@popperjs
after-transition
.npmignore
Makefile
Readme.md
component.json
index.js
package.json
bootstrap
bootstrap-icons
component-emitter
component-query
css-ease
css-emitter-component
event-component
has-transitions
has-translate3d
move-js
scrolling-tabs-bootstrap-5
transform-property
.package-lock.json
index.html
classes
config
controller
dashboard
datepicker
fpdf186
jquery
js
language
lib
media
msd
selfregistration
sql
survey
templates
test
tinymce
.gitignore
Hinweise_zu_php8.txt
config.inc.php
todo.txt
31 lines
666 B
Markdown
31 lines
666 B
Markdown
|
|
# after-transition
|
|
|
|
Fire a callback after a transition or immediately if the browser does not support transitions.
|
|
If the element does not have a transition property it will also fire immediately.
|
|
|
|
## Installation
|
|
|
|
$ component install anthonyshort/after-transition
|
|
|
|
or via npm for use with Browserify
|
|
|
|
$ npm install after-transition
|
|
|
|
## API
|
|
|
|
var afterTransition = require('after-transition');
|
|
|
|
afterTransition(el, function(){
|
|
// Do things when the transition has finished
|
|
// This will fire immediately for IE
|
|
});
|
|
|
|
afterTransition.once(el, function(){
|
|
// Same as above but will only fire once
|
|
});
|
|
|
|
## License
|
|
|
|
MIT
|