D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home3
/
encodto1
/
mtfproduction.com
/
mtadminf
/
assets
/
js
/
Filename :
modal-animated.js
back
Copy
/**===================== Modal-animated Start ==========================**/ "use strict"; function testAnim(x) { $(".modal .modal-dialog").attr("class", "modal-dialog " + x + " animated"); } var modal_animate_custom = { init: function () { $("#myModal").on("show.bs.modal", function (e) { var anim = $("#entrance").val(); testAnim(anim); }); $("#myModal").on("hide.bs.modal", function (e) { var anim = $("#exit").val(); testAnim(anim); }); }, }; (function ($) { "use strict"; modal_animate_custom.init(); })(jQuery); /**===================== Modal-animated Ends ==========================**/