0
我無法弄清楚如何在文本輸入中進行動畫顏色更改。在動畫中更改佔位符顏色
這是CSS:
@keyframes anim {
0% {
opacity: 0.2;
color:blue;
}
70% {
opacity: 1;
color: red;
}
100% {
opacity: 0.1;
color: blue;
}
}
input,
input::-webkit-input-placeholder {
animation: anim 4s;
}
HTML:
<input type="text" placeholder="Hello" />
JsBin: https://jsbin.com/yejiwipego/1/edit?html,css,output
不透明度改變的罰款。 我得錯過點什麼嗎?