當動畫進行時,border-radius不起作用,動畫完成後,border-radius開始工作,任何解決方案?CSS animation block border radiuss
http://codepen.io/anon/pen/jyvKpq
HTML:
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.css" rel="stylesheet">
<div><i class='fa fa-spinner spin360'></i> Text...</div>
<span class="u-p">
<img src="https://68.media.tumblr.com/30ecad5922df68e02bec6e9dc88f95da/tumblr_oe204wOZrX1votm1fo1_500.jpg">
</span>
CSS:
.u-p {
display: block;
position: relative;
overflow: hidden;
border-radius: 100%;
width:65px;
height:65px;
}
.u-p img {
position: absolute;
top: 0;
bottom: 0;
left:0;
margin: auto;
width: 65px;
height: auto;
min-height: 100%;
min-width: 65px;
}
.spin360 {
animation-name: spin360;
animation-duration: 1.5s;
}
@keyframes spin360 {
from {transform: rotate(0deg);}
to {transform: rotate(360deg);}
}
可能重複這個簡短的文章將是解答更有用的順序問題/ 34507083/border-radius-and-overflow-arent-respected-when-animation-is-added-on-a-differe/34508062#34508062(無法確認,因爲我在移動設備上訪問但添加了z-index :1'到'.up'應該可以解決問題,就像在那個答案中提到的那樣。原因也在那裏提供。) – Harry
謝謝,作品:) –
如果您的問題與特定的瀏覽器或設備有關,最好提一下。我在firefox中測試了你的代碼,沒有任何問題。 –