Blame view
public/js/script.js
4.05 KB
bdd23ce34 На сервер. Правки |
1 2 3 4 5 6 7 8 9 10 11 12 |
let scripts = function () { $('.js-toggle').on('click', function () { $(this).toggleClass('active'); }); $('.js-parent-toggle').on('click', function () { $(this).parent().toggleClass('active'); }); $('.js-parent-remove').on('click', function () { $(this).parent().remove(); }); $('.js-menu-toggle').on('click', function () { |
1c6078a15 Обновление от вос... |
13 |
window.scrollTo(0, 0); |
bdd23ce34 На сервер. Правки |
14 15 16 17 18 19 20 21 22 23 24 |
$('#body').toggleClass('menu-is-actived'); }); $('.js-cookies-close').on('click', function () { $('#body').removeClass('cookies-is-actived'); }); $('.js-works-edit').on('click', function () { $(this).parent().parent().parent().addClass('active'); }); $('.js-works-remove').on('click', function () { $(this).parent().parent().parent().parent().remove(); }); |
1c6078a15 Обновление от вос... |
25 26 |
$('[data-tab]').on('click', function () { |
bdd23ce34 На сервер. Правки |
27 28 29 30 |
$('[data-tab]').removeClass('active'); $('[data-body]').removeClass('showed'); $(this).addClass('active'); var id = $(this).data('tab'); |
1c6078a15 Обновление от вос... |
31 |
$('[data-body=' + id + ']').addClass('showed'); |
bdd23ce34 На сервер. Правки |
32 |
}); |
1c6078a15 Обновление от вос... |
33 |
$('.js-password-show').on('click', function () { |
bdd23ce34 На сервер. Правки |
34 |
$(this).parent().addClass('active'); |
1c6078a15 Обновление от вос... |
35 |
$(this).parent().parent().find('input').attr('type', 'text'); |
bdd23ce34 На сервер. Правки |
36 |
}); |
1c6078a15 Обновление от вос... |
37 38 |
$('.js-password-hide').on('click', function () { |
bdd23ce34 На сервер. Правки |
39 |
$(this).parent().removeClass('active'); |
1c6078a15 Обновление от вос... |
40 |
$(this).parent().parent().find('input').attr('type', 'password'); |
bdd23ce34 На сервер. Правки |
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
}); let checkScrollTop = function () { if ($(document).scrollTop() == 0) { $('#body').removeClass('begin'); } else { $('#body').addClass('begin'); } } checkScrollTop(); $(document).on('scroll', function () { checkScrollTop(); }); let closeAll = function () { $('.js-toggle').removeClass('active'); $('.js-parent-toggle').parent().removeClass('active'); $('#body').removeClass('menu-is-actived'); $('#body').removeClass('cookies-is-actived'); } $(document).keyup(function (e) { if (e.key === "Escape") { closeAll(); } }); $('.js-scroll-to').bind('click', function (e) { let anchor = $(this); $('html,body').stop().animate({ scrollTop: $(anchor.attr('href')).offset().top }, 300); e.preventDefault(); }); |
1c6078a15 Обновление от вос... |
75 |
if ($('[type=tel]').is('[type=tel]')) { |
bdd23ce34 На сервер. Правки |
76 77 |
$('[type=tel]').mask('+7 (999) 999-99-99'); } |
1c6078a15 Обновление от вос... |
78 79 |
if ($('.js-select2').is('.js-select2')) { |
bdd23ce34 На сервер. Правки |
80 81 |
$('.js-select2').select2(); } |
1c6078a15 Обновление от вос... |
82 83 84 85 86 87 |
const starRating = document.querySelectorAll(".js-stars"); if (starRating.length) { starRating.forEach(item => { new StarRating(item); }); } |
bdd23ce34 На сервер. Правки |
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
}; let swipers = function () { if ($('.js-employer-swiper').is('.js-employer-swiper')) { let slider = new Swiper('.js-employer-swiper', { autoplay: { delay: 5000, }, pagination: { el: '.swiper-pagination', clickable: true }, breakpoints: { 768: { slidesPerView: 2, }, 992: { slidesPerView: 3, }, 1280: { slidesPerView: 4, }, } }); } if ($('.js-news-swiper').is('.js-news-swiper')) { let slider = new Swiper('.js-news-swiper', { spaceBetween: 20, pagination: { el: '.swiper-pagination', clickable: true }, navigation: { prevEl: '.js-news-swiper-button-prev', nextEl: '.js-news-swiper-button-next', }, breakpoints: { 768: { slidesPerView: 2, }, 992: { slidesPerView: 3, }, } }); } }; document.addEventListener("DOMContentLoaded", () => { scripts(); swipers(); }); $(window).resize(function () { swipers(); }); |