0
我試着填寫淚滴爲了使用它作爲預載灌裝淚滴CSS3
這裏是代碼
#drop {
margin: 100px auto; \t
width: 300px;
height: 300px;
border-bottom-right-radius: 50%;
border-bottom-left-radius: 50%;
border-top-left-radius: 50%;
-webkit-transform:rotate(-45deg);
z-index: 99;
position: relative;
background: #fff;
border: 1px solid #e74c3c;
overflow: hidden;
}
#drop::before {
content: '';
position: absolute;
background: #e74c3c;
width: 100%;
bottom: 0;
animation: wipe 5s cubic-bezier(.2,.6,.8,.4) forwards infinite;
}
@keyframes wipe {
0% {
height: 0;
}
100% {
height: 100%;
}
}
<div id="drop"></div>
我試圖用變換和保證金但它失敗了
在前提前感謝
解釋,而不僅僅是代碼轉儲,通常是非常有用的。 – j08691
@Vitorino fernandes wowww太棒了,非常感謝,對於這個,上帝保佑你:) <3 –