Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个点击后会翻转的盒子。里面还有一张在悬停时放大的图像,如图所示。 问题是当我将鼠标移出或放回时,隐藏的图像上的缩放过渡会短暂显示。 我尝试修复它:
#box.flip:hover img{ -webkit-transform: none; }
但是这个在翻转过渡完成之前重置图像,看起来很难看。
只需添加 z-index:
#box.flip .amount{ -webkit-transform: rotateX(0deg); z-index:999; }
http://jsfiddle.net/aJY34/3/