function inc2() {
var count = 1; // Объявляем count переменную и она сохраняется в скопе со значением 1 функции inc2()
function inc() {
return count++; // переменной count еще пока нет, и интропритатор начинает ее искать выше в функции inc2() и сохраняет ее в свой скоп.
};
return inc; // возвращает полученое значение, при последующех вызовах, переменная будет увиличевотся на 1, поскольку у функции inc() в скопе она будет менять, а у функции inc2() как раз таки и проиходи сохранение через замыкание
}
function siblings(elem) {
let siblings = [];
let sibling = elem;
while (sibling.previousSibling) {
sibling = sibling.previousSibling;
sibling.nodeType == 1 && siblings.push(sibling);
}
sibling = elem;
while (sibling.nextSibling) {
sibling = sibling.nextSibling;
sibling.nodeType == 1 && siblings.push(sibling);
}
return siblings;
}
var scrollTop = window.pageYOffset || document.documentElement.scrollTop;
console.log(scrollTop)
let g = document.querySelector('#obj');
let tagText = g.firstElementChild;
let tagTextWidth = tagText.offsetWidth; // Размеры
let tagTextHeight = tagText.offsetHeight; // блока
$(function() {
var $button = $('#btnMenu'),
$header = $('.header'),
$subHeader = $('.subheader');
$button.on('click', function() {
$button.toggleClass('toggleColor');
$('.make-poster-icon').toggleClass('toggleColor');
$header.toggleClass('show-header');
$subHeader.toggleClass('show');
$('.logotype-label__whatt').toggleClass('fill');
$('.logotype-label__other').toggleClass('fill');
});
$(window).resize(function() {
var windowWidth = $(this).width();
if (windowWidth >= 768) {
$header.removeClass('show-header');
$subHeader.removeClass('show');
$button.removeClass('toggleColor');
$('.make-poster-icon').removeClass('toggleColor');
$('.logotype-label__whatt').removeClass('fill');
$('.logotype-label__other').removeClass('fill');
}
});
});
$(function() {
var $button = $('#btnMenu'),
$header = $('.header'),
$subHeader = $('.subheader');
$(document).on('click', $button, function() { // не много изменить тут
$button.toggleClass('toggleColor');
$('.make-poster-icon').toggleClass('toggleColor');
$header.toggleClass('show-header');
$subHeader.toggleClass('show');
$('.logotype-label__whatt').toggleClass('fill');
$('.logotype-label__other').toggleClass('fill');
});
$(window).resize(function() {
var windowWidth = $(this).width();
if (windowWidth >= 768) {
$header.removeClass('show-header');
$subHeader.removeClass('show');
$button.removeClass('toggleColor');
$('.make-poster-icon').removeClass('toggleColor');
$('.logotype-label__whatt').removeClass('fill');
$('.logotype-label__other').removeClass('fill');
}
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
$( function () {
$( '.register-block-hidden' ).show();
$( '.register' ).on( 'click', function() {
$( '.login-block-visible' ).fadeOut( 500 );
$( '.register-block-hidden' ).fadeIn( 500 );
});
$( '.logir' ).on( 'click', function() {
$( '.login-block-visible' ).fadeIn( 500 );
$( '.register-block-hidden' ).fadeOut( 500 );
});
});