テキストの色だけに css3 トランジションを使用する方法はありますか?
readmore
次のような遷移効果を持つクラスがあるとします
.readmore{
colour:red;
-webkit-transition: all .3s ease-out;
-moz-transition: all .3s ease-out;
-o-transition: all .3s ease-out;
transition: all .3s ease-out;
background:url(images/sprite.png) no-repeat 0 0;
}
.readmore:hover{
colour:red;
background:url(images/sprite.png) no-repeat 0 -20px;
}
今は背景画像のトランジションを適用したくありません。色だけにトランジションを適用する必要があります。テキストの上にマウスを置くと、画像がアニメーションしていて見栄えがよくないからです。
何かアドバイス?前もって感謝します。