CSS3 Transition不再在Chrome中运行了

时间:2014-01-14 22:42:43

标签: jquery css3 google-chrome css-transitions

据我所知,到目前为止,CSS3过渡对我来说没有任何问题。突然(可能是因为Chrome更新或对我的代码进行了其他修改)它刚刚停止使用chrome(32.0.1700.77),但仍适用于所有其他浏览器(以及较旧版本的chrome)。

@media screen and (max-width: 1325px) {
    .row-offcanvas {
        position: absolute;
        -webkit-transition: all 0.25s ease-out;
        -moz-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
        width: 100%;
    }

    button.toggle {
        display: inline-block;
    }

    .row-offcanvas-left,
    .sidebar-offcanvas {
        left: -239px;
        z-index: 9999;
        height: 700px;
    }
    .row-offcanvas-left.active {
        left: 239px;
    }
    .sidebar-offcanvas {
        position: absolute;
        top: 0;
        width: 239px;
    }
}

我没有对网站的这一部分进行任何更改,我无法解释为什么它可能不会突然发生。转换是针对一个面板,当单击按钮时,该面板会滑出,由这个javascript(不负责动画)触发。

$(document).ready(function() {
  $('[data-toggle=offcanvas]').click(function() {
    $('.row-offcanvas').toggleClass('active');
  });
});

1 个答案:

答案 0 :(得分:18)

您的问题是您尝试使用未定义的属性设置动画:您正在将left更改为239px,但最初并未将其明确指定为0。因此,它默认为auto,这是一个没有有效平滑过渡到239px的值。

left:0添加到基本定义中,您就可以了。

See a JSfiddle here demonstrating your problem in Chrome 32+