0

There is a Google chrome bug with my code that there isn't in IE & Firefox.
The Address is : chashnik
The DIV class '.health' has a background image with fixed attachment property.
In Google chrome this images blinks repeatedly and never stopped.
There isn't any problem with Firefox & IE.
CSS Code:

.health {
    float: left;
    height: 930px;
    width: 400px;
    position: relative;
    background-attachment:fixed !important;
    background-image: url(../images/pattern/back-healt.jpg);
    background-position: center center;
    background-repeat: repeat;
}
4

1 回答 1

0

页面顶部的轮播使用 Chrome 中的硬件加速。每次更改幻灯片时,硬件都会启动并稍微改变页面呈现的方式(包括弄乱任何东西fixed

  • 要么用不使用 3D 变换的东西替换轮播,要么
  • 停止 carousel,暂时(在用户滚动到它下面之后)或完全(我建议这样做,考虑到他们两个有多烦人)
于 2014-01-04T23:02:59.583 回答