并指出,在我的一个应用程序客户端中,有一个过渡错误(最新版本为chrome)-当他加载页面时,css转换根本不起作用,然后,当他滚动时,或在某些时间转换中做了一些其他操作重新启动,一段时间后,它们不再工作(Video of it)。过渡示例:

 -webkit-transition: all .3s linear;
 -moz-transition: all .3s linear;
 -ms-transition: all .3s linear;
 -o-transition: all .3s linear;
 transition: all .3s linear;


还有site本身。
附言我无法在我的PC或我可以访问的任何PC上重现错误,但客户端在5台PC中有2台可以复制。任何帮助将不胜感激。

最佳答案

在50台计算机中,我们有2台也存在此Chrome错误。

https://code.google.com/p/chromium/issues/detail?id=451756

在版本40.0.2214.115中已修复

关于css - Chrome中的过渡错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28581439/

10-09 18:38