我使用css3在用户单击图像时缩放图像我将此css分配给它在浏览器上完美运行的图像但是当我在android上运行它时它不会缩放图像只有翻译方法正在工作
.scaleImage{
-moz-animation-name: AN-ani-17;
-webkit-animation-name: AN-ani-17;
-moz-animation-duration: 2s;
-webkit-animation-duration: 2s;
-moz-animation-delay: 0s;
-webkit-animation-delay: 0s;
-moz-animation-fill-mode: both;
-webkit-animation-fill-mode: both;
}
@-webkit-keyframes AN-ani-17 {
0% {
-webkit-transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1);
-webkit-animation-timing-function: ease;
}
50% {
-webkit-transform: translate3d(0px, 380px, 0px) scale3d(1, 1.5, 1);
-webkit-animation-timing-function: ease;
}
/* 75% {
-webkit-transform: translate3d(0px, 270px, 0px) scale3d(1, 1.2, 1);
-webkit-animation-timing-function: ease;
}*/
100% {
-webkit-transform: translate3d(0px, 470px, 0px) scale3d(1, 1.6, 1);
-webkit-animation-timing-function: ease;
}
}
@-moz-keyframes AN-ani-17 {
0% {
-moz-transform: translate(0px, 0px) scale(1, 1);
-moz-animation-timing-function: ease;
}
50% {
-moz-transform:translate(0px, 380px, 0px) scale(1, 1.5, 1);
-moz-animation-timing-function: ease;
}
100% {
-moz-transform: translate(0px, 470px, 0px) scale(1, 1.6, 1);
-moz-animation-timing-function: ease;
}
}
如何在安卓设备上运行它