
Company News
/Security News
Socket Selected for OpenAI's Cybersecurity Grant Program
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.
ember-animatable
Advanced tools
Ember Mixin which provides convenient way using animate.css animations in components. Demo
animate(animationType:string, animationTarget:string): promiseanimationType: animation type bounce, full list can be found hereanimationTarget: css selector .class-name (optional if not provided component is the target)returns: promise which is resolved when animation finishesanimate(animationTarget:string/element, animationType:string): promiseanimationTarget: css selector .class-name
animationType: animation type bounce, full list can be found herereturns: promise which is resolved when animation finishesimport Ember from 'ember';
import AnimatableMixin from 'ember-animatable';
export default Ember.Component.extend(AnimatableMixin, {
click() {
let anim = this.animate('pulse', '.animation-target');
anim.then(function() {
console.log('animation complete')
});
}
});
import Ember from 'ember';
import { animate } from 'ember-animatable';
export default Ember.Component.extend({
click() {
let anim = animate('.animation-target', 'pulse');
anim.then(function() {
console.log('animation complete')
});
}
});
By default addon will import all css animations provided by animate.css, but usually you don't need all css animations, so you can specify which once to import in app config.
let app = new EmberApp(defaults, {
'ember-animatable': {
include: ['pulse', 'bounceIn'] // pulse and bounceIn animation will be imported
}
});
ember install ember-animatable
FAQs
ember-animatable addon (animate.css component mixin)
We found that ember-animatable demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.

Security News
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.

Research
/Security News
Campaign of 108 extensions harvests identities, steals sessions, and adds backdoors to browsers, all tied to the same C2 infrastructure.