Get started with jquery-easing CDN
(MIT OR BSD-3-Clause) licensed
JQuery Easing: Plugin offers customizable easing effects for jQuery animations.
Tags:- jquery-plugin
- ecosystem:jquery
Stable version
Copied!
How to start using jquery-easing CDN
$(document).ready(function() {
$(".box").click(function() {
$(".another-box").animate(
{ height: "200px" }, // Animation properties
500, // Duration
"easeInOutQuad" // Easing type
);
});
$(".another-box").animate(
{ height: "50px" }, // Animation properties
500, // Duration
"easeInOutQuad" // Easing type
).delay(1000).animate(
{ height: "50px" }, // Animation properties
500, // Duration
"easeInOutQuad" // Easing type
);
// Include the jQuery Easing library
$.getScript("https://cdn.cdnhub.io/jquery-easing/1.4.1/jquery.easing.min.js", function() {
// Ensure the library is loaded before using it
console.log("jQuery Easing library loaded.");
});
});
Copied!
Copied!
Copied!
Copied!
Copied!