Here's my codepen: http://codepen.io/Chiz/pen/epWbOb
It works well and all, but I want to apply JQuery UI's easeOutBack easing effect without using the entire oceanload of JQuery UI.
I see this old thread in 2011 where one of posters (Jake) mention about "borrowing" the code from the JQuery UI library and using just the easing code you need: jQuery easing functions without using a plugin
Problem is: how do I integrate the JQuery easing function into my code? Latest version of JQuery UI (1.8.24) : https://code.jquery.com/ui/1.8.24/jquery-ui.js
Tks!
$("div").hide();
$(window).on("click", function() {
$("div").slideDown(300);
})
div {
width: 300px;
height: 300px;
position: absolute;
bottom: 0;
background-color: gray;
display: none;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div></div>