0

リンクとして機能するpng画像があり、ホバーに影響を与えたいと思います。たとえば、背景色がオレンジ色に変わります。CSSでできますか?

または、画像全体 (透明な領域を含む) ではなく、png 画像内の形状の周りのオレンジ色の影など、その他の効果。

This is the code so far:

.latestTrack img {
    float:right;
    margin-right:50px !important;
}
.latestTrack img:hover {
    box-shadow: 0 0 10px orange; 
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}
4

1 に答える 1