我实施了占位符动画,然后是this博客,用于sencha touch文本字段。它在Chrome浏览器中工作正常,但它在Android设备中无效(Checked with 5.0)
.x-input-text::-webkit-input-placeholder {
color: #909090;
position: relative;
-webkit-transform: translate3d(0, 0, 0);
transition: all 0.2s ease-in-out;
}
.x-input-text::-webkit-input-placeholder[style*=hidden] {
color: #5856D6;
font-weight: 700;
font-size: 12px;
-webkit-transform: translate3d(0, -16px, 0);
opacity: 1;
visibility: visible !important;
}