3D 中的 Webkit 变换平面消失,看起来不像是背面问题。 (铬合金)
在 Chrome 中检查这个小提琴: http://jsfiddle.net/resistdesign/Qvv2r/11/
飞机消失了几秒钟。背面的角度大约为 180 度,然后噗!
我尝试了 preserve-3d
的各种配置并设置了背面可见性或不设置。
此时有点迷失了:P
Check this fiddle in Chrome: http://jsfiddle.net/resistdesign/Qvv2r/11/
The plane disappears for a few seconds. The back face is shown up to about 180 deg, then POOF!
I tried various configurations of preserve-3d
and setting the back face visibility or not.
Kind of lost at this point :P
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
回答!
父级 div 有一个
背景颜色
,在某些时候,旋转的 div 位于父级“后面”。只需删除父级的
background-color
并将其添加到 DOM 中“较早”的元素即可。ANSWER!
The parent div has a
background-color
, at some point, the rotating div is "behind" the parent.Simply remove the
background-color
of the parent and add it to an element "earlier" in the DOM.