var index = 0;
if(index >= $('.js-iframe-load').length){
clearInterval(intrvl);
}
intrvl = setInterval(function(){
$('.js-iframe-load').eq(index).attr('src', $('.js-iframe-load').eq(index).attr('data-src-frame') );
index++
}, 3000);
var targetElem = $('.elem');
var targetElemPos = targetElem.offset().top;
$(window).resize(function(){
targetElemPos = targetElem.offset().top;
});
$(window).scroll(function(){
var scrolledAtop = $(this).scrollTop();
if(scrolledAtop > targetElemPos){
targetElem.addClass('elem-active');
}
});
var target = $('.elem');
var targetPos = target.offset().top;
var winHeight = $(window).height();
var scrollToElem = targetPos - winHeight;
$(window).scroll(function(){
var winScrollTop = $(this).scrollTop();
if(winScrollTop > scrollToElem){
//сработает когда пользователь доскроллит к элементу с классом .elem
}
});
@font-face{
font-family:'CenturyGothic-Italic';
src:url('../fonts/CenturyGothic-Italic.woff2') format('woff2'),
url('../fonts/CenturyGothic-Italic.woff') format('woff'),
url('../fonts/CenturyGothic-Italic.ttf') format('truetype');
font-weight:normal;
font-style:normal;
}