Transitions translateX不仅适用于Chrome

时间:2013-07-06 10:37:18

标签: google-chrome css-transitions

我有这样的事情:http://dabblet.com/gist/5939428

为什么这个适用于所有浏览器(甚至IE)除了Chrome?

1 个答案:

答案 0 :(得分:0)

请你试试这个。这里我添加了z-index:1:

.grid figcaption {
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px;
    background: #1d1d1b;
    color: #fff;
        z-index:1; 
}

在这里我设置了z-index值十(10)。

.cs-style-2 figure .cat, .cs-style-2 figure .cat img {
    z-index: 10;
    box-shadow: -1px 0 10px #000000;
    -webkit-transition: -webkit-transform 1s;
    -moz-transition: -moz-transform 1s;
    transition: transform 1s;
    position: relative;
}

它在firefox和chrome中为我工作