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.
我只想缩放“外壳”
http://jsfiddle.net/97gSF/
.progress-radial:hover{ -webkit-transform: scale(1.2); } <div class='progress-radial progress-100'> <div class='profilePicture'></div><a href='#' class='percent'>45%</a> </div>
您可以简单地抵消内部元素的缩放:
.progress-radial:hover > * { -webkit-transform: scale(0.833); }
JSFiddle 演示。