如何使这种转换在所有浏览器中都有效?尽管我将这些值应用于所有浏览器,但它仅在 Chrome 中起作用。(我也在其他电脑上试过,结果一样):
.titlu
{
background:url(images/titlu.png);
background-repeat: no-repeat;
width:716px;
height: 237px;
display: block;
position: absolute;
top:460px;
right: 255px;
z-index: 5;
-webkit-transition: background 0.20s linear;
-moz-transition: background 0.20s linear;
-o-transition: background 0.20s linear;
transition: background 0.20s linear;
}
.titlu:hover
{
width:716px;
height: 237px;
display: block;
z-index: 5;
background-repeat: no-repeat;
background-image:url(images/titlu2.png);
}
我被要求更详细地说明问题...我的意思是不工作是 webkit 效果不适用于图像...悬停只是过渡没有生效。