
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
jquery.animated
Advanced tools
Useful helper for Animate.css. If you wanna use other animations, just include another stylessheet & set custom options.
Set Animate.css or part of it.
Set jQuery & jQuery.Animated.js.
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="jquery.animated.min.js"></script>
// Just init on click and use shake or some another effect
$('#animated1').animated('shake');
// Use with callback
$('#animated2').animated('shake', function () {
alert('Thank you for shake!');
});
// Use with options
$('#animated3').animated({
animatedClass: 'animated',
animationClass: 'shake',
onAnimationEnd: function () {
alert('Thank you for shake!');
}
});
// Also you can reset default global options before init
$.animated.options = {
animatedClass: 'animated', // Base animation class
animationPrefix: '', // Prefix for `animationClass`, it's useful if you use BEM
animationClass: 'shake', // Animation effect class
onAnimationEnd: null // Callback
};
// And simply use with default or custom global options
$('#animated4').animated();
// And with callback
$('#animated5').animated(function () {
alert('Thank you for shake!');
});
Released under the MIT license.
FAQs
Useful helper for Animate.css.
The npm package jquery.animated receives a total of 1 weekly downloads. As such, jquery.animated popularity was classified as not popular.
We found that jquery.animated 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.

Security News
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.