var w=$(window).width();//после загрузки страницы сразу фиксируем начальную ширину окна браузера
$(window).resize(function() {//после изминения окна браузера
var new_w=$(window).width();//фиксируем новую ширину окна браузера
if(new_w!=w) {// если "новая" ширина не равна "старой"
//alert('1');//делаем то что нам нужно
w=new_w;//и в значение "старой" ширины записываем "новую" ширину
}
});
//и еще вариант
var w = 0;
$( window ).load( function(){
w = $( window ).width();
});
$( window ).resize( function(){
if( w != $( window ).width() ){
//Do something
w = $( window ).width();
}
});
function Menu() {
var menu = $('#...'),
menu_children = menu.children(),
submenu = $('#...'),
submenu_children = submenu.children();
menu_children.each(function (i, v) {
var next = $(this).next();
if(next.length != 0){
$(submenu_children[i]).css({'width': $(this).next().position().left - $(this).position().left});
}
else {
$(submenu_children[i]).css({'width': $(this).width()});
}
});
}
jQuery(function($){
var max_col_height = 0; // максимальная высота, первоначально 0
$('.box_one').each(function(){ // цикл "для каждой из колонок"
if ($(this).height() > max_col_height) { // если высота колонки больше значения максимальной высоты,
max_col_height = $(this).height(); // то она сама становится новой максимальной высотой
}
});
$('.box_one').height(max_col_height); // устанавливаем высоту каждой колонки равной значению максимальной высоты
//////////
var max_col_height2 = 0; // максимальная высота, первоначально 0
$('.box_two').each(function(){ // цикл "для каждой из колонок"
if ($(this).height() > max_col_height2) { // если высота колонки больше значения максимальной высоты,
max_col_height2 = $(this).height(); // то она сама становится новой максимальной высотой
}
});
$('.box_two').height(max_col_height2); // устанавливаем высоту каждой колонки равной значению максимальной высоты
});
function showMap(){
google.maps.event.trigger(map, 'resize');
}
//или
$('#btn').on('click', function() {
showMap();
google.maps.event.trigger(map, 'resize'); //или сразу
});
$('.get-direction').on('click',function() {
// if map is null (the first time), initiate Google maps;
if (! map) {
initialize();
}
searchAddress( $(this).html() );
showMap();
});
$('.close-map').click(function() {
hideMap();
});
const swiperSlides = document.getElementsByClassName('swiper-slide');
s6.on('slideChange', function() {
const otherSlides = swiperSlides
for (let index = 0; index < swiperSlides.length; index++) {
const element = swiperSlides[index];
element.getElementsByTagName('a')[0].style.display = 'none'
}
const linkElemCurrentSlide = swiperSlides[s6.realIndex].getElementsByTagName('a')
linkElemCurrentSlide[0].style.display = 'block'
});
.sec1 .ar0 h2 {
padding-right: 245px;
}
article h2{
width: 100%;
max-width: 518px;
}
.sec1 .ar0 h2 {
/* padding-right: 245px; */
}