$(document).ready(function(){ function newscontfiveShow() { var stepslider = document.getElementsByClassName('newscontfive'); stepslider[0].setAttribute("data-wow-duration", "3s" ); var stepitem = document.getElementsByClassName('newscontfive-item-wrap'); var s = 0.1; for (var i = 0; i < stepitem.length; i++) { stepitem[i].setAttribute('data-wow-delay', s+"s"); s = s+0.1; } } function newscontfiveOpen() { $('.newscontfive-item-info__text-hidden').css('display', 'none'); var color = $('.newscontfive-item-info__text-btn-text').css('color'); $('.newscontfive-item-info__text-btn-symboldown').css('border-color', color); $('.newscontfive-item-info__text-btn').click(function() { var currentHiddenBlock = $(this).parent().find('.newscontfive-item-info__text-hidden'); var currentActiveSymboldown = $(this).find('.newscontfive-item-info__text-btn-symboldown'); var currentActiveBtntext = $(this).find('.newscontfive-item-info__text-btn-text'); var currentActiveIteminfo = $(this).parent(); var currentActiveImg = $(this).parent().parent().find('.newscontfive-item-img-wrap'); //закрыть открытые новости $('.newscontfive-item-info__text-hidden').not(currentHiddenBlock).slideUp( "slow", function() { }); $('.newscontfive-item-info__text-btn-symboldown').not(currentActiveSymboldown).removeClass('newscontfive-item-info__text-btn-symboldown-active'); $('.newscontfive-item-info__text-btn-text').not(currentActiveBtntext).removeClass('newscontfive-item-info__text-btn-text-active'); $('.newscontfive-item-info').not(currentActiveIteminfo).removeClass('newscontfive-item-info-active'); $('.newscontfive-item-img-wrap').not(currentActiveImg).removeClass('newscontfive-item-img-wrap-active'); //текущий элемент currentActiveSymboldown.toggleClass('newscontfive-item-info__text-btn-symboldown-active'); currentActiveBtntext.toggleClass('newscontfive-item-info__text-btn-text-active'); currentActiveIteminfo.toggleClass( "newscontfive-item-info-active"); currentHiddenBlock.slideToggle( "slow", function() { }); currentActiveImg.toggleClass( "newscontfive-item-img-wrap-active"); }); } newscontfiveShow(); newscontfiveOpen(); });