%PDF- %PDF-
Direktori : /var/www/ns.eco-n-tech.co.uk/html/src/js/ |
Current File : /var/www/ns.eco-n-tech.co.uk/html/src/js/app.js |
( ($) => { $(document).ready(function() { const BURGER_CONTENT = $('.burger-content'); const BODY = $('body'); const FOOTER_TITLE = $("footer .title"); const FOOTER_SOCIAL = $("footer .social"); // Menu show $('.btn-menu').on('click', function(){ BURGER_CONTENT.toggleClass('active'); BODY.toggleClass('lock'); }); $('.btn-menu-cross').on('click', function(){ BURGER_CONTENT.toggleClass('active'); BODY.toggleClass('lock'); }); // Footer mobile moveOnMobile(); $(window).resize(function(e){ moveOnMobile(); }); function moveOnMobile(){ if ( window.innerWidth <= 1024 ) { console.log(window.innerWidth); FOOTER_TITLE.prependTo(".top-title"); FOOTER_SOCIAL.prependTo(".bottom-social"); return; } console.log(window.innerWidth); FOOTER_TITLE.prependTo("footer .image-block"); FOOTER_SOCIAL.prependTo("footer .social-block"); } }); })(jQuery)