这在safari中失败了。在chrome,opera和firefox中测试正常。
当鼠标悬停在div(1)上时,子div(2)通过修改left属性进行滑动。
第二个div包含子元素(按钮),它们不跟随其父div(2)的滑动过渡而闪烁。
**username:Alex
**password:passwordAlex
通过访问用户页面的示例:
http://monkey-me.herokuapp.com/users
完整的CSS:
https://github.com/coolcatDev/monkey-me-heroku/blob/master/static/css/style.css
divs的引用:
**div(1)->class .contentUser
**div(2)->class .contentButtonWrap
**child buttons of div(2)->class .contentButton
发布于 2015-02-21 17:27:50
添加以下内容作为经历转换的元素(Div 2)的样式的一部分解决了它:
-webkit-transform-style: preserve-3d;
在safari 5.1.10和6中,如果没有此属性,则会出现该错误
https://stackoverflow.com/questions/28640781
复制相似问题