����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 52.14.150.165 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/gle.gltechlimited.com/resources/assets/js/ |
Upload File : |
/* Buttons */ (function ($) { $(document).ready(function () { // jQuery reverse $.fn.reverse = [].reverse; $(document).on('mouseenter.fixedActionBtn', '.fixed-action-btn', function (e) { var $this = $(this); openFABMenu($this); }); $(document).on('mouseleave.fixedActionBtn', '.fixed-action-btn', function (e) { var $this = $(this); closeFABMenu($this); }); }); $.fn.extend({ openFAB: function () { var $this = $(this); openFABMenu($this); }, closeFAB: function () { closeFABMenu($this); } }); var openFABMenu = function (btn) { $this = btn; if ($this.hasClass('active') === false) { $this.addClass('active'); $this.find('ul .btn-floating').velocity({ scaleY: ".4", scaleX: ".4", translateY: "40px" }, { duration: 0 }); var time = 0; $this.find('ul .btn-floating').reverse().each(function () { $(this).velocity({ opacity: "1", scaleX: "1", scaleY: "1", translateY: "0" }, { duration: 80, delay: time }); time += 40; }); } }; var closeFABMenu = function (btn) { $this = btn; $this.removeClass('active'); var time = 0; $this.find('ul .btn-floating').velocity("stop", true); $this.find('ul .btn-floating').velocity({ opacity: "0", scaleX: ".4", scaleY: ".4", translateY: "40px" }, { duration: 80 }); }; }(jQuery));