Jump to content
  • 0

Дергание fixed блока при скролле


vladmih
 Share

Question

Гуру, подскажите что я делаю не так? 

Есть шапка, которая имеет такие стили

header {
position: absolute;
width: 100%;
top: 150px;
height: 85px;
z-index: 10;
background: url(../img/head-line.png) repeat-y center center;
}
 
При скролле страницы я добавляю класс, и она прилипает к верху:
header.fixed-top {
position: fixed;
top: 0px;
}

И сам код:
 
$(window).scroll(function(){
if ($(window).scrollTop() > 150) {
$('header').addClass('fixed-top');
} else {
$('header').removeClass('fixed-top');
}
})

Суть в том  что в хроме когда скролю страницу, появляется мерциание этого хедера.
Не пойму в чем косяк, ведь раньше так делал и не было таких проблем...

 

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Нет, анимаций нет.
Хедер просто прилипет вверх, когда страница прокручивается до него.
Мерцание только когда скролю мышкой.
Если скроллю, стрелками или полосой прокрутки такого мерцания нет...

Link to comment
Share on other sites

  • 0

Анимаций и трансишенов нет... Создается такое впечатление, что при скролле каждый раз блок прыгает от абсолютного позиционирования в фиксированное... Хз... Печаль...

Link to comment
Share on other sites

  • 0

Решено:

 

-webkit-transform: translateZ(0);

к хедеру... 
Самое интересное анимаций нет совсем...

Воть с этим все гуд... Хром меня разочаровал... Такие косяки...

Закройте тему плиззз

Edited by vladmih
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy