emrecanyk adlı üyeden alıntı: mesajı görüntüle
resmi ekleyin ve class atayın
<a href=&quot;#&quot;><img class=&quot;resim&quot; src=&quot;adres&quot; title=&quot;&quot; alt=&quot;&quot;/></a>
ben bu resme resim clasını atadım style dosyanızdanda şu kodları verin
img.resim {border-radius:10px;}
img.resim:hover {border-radius:0px;}
Bu kod animasyonlu olmaz yalnız dostum. transition kullanılmalı burada.



<a class="resim"  href="#"><img src="adres" title="" alt=""/></a>
a.resim img { background-image: url("resimyolu.jpg"); background-repeat: no-repeat; background-size: cover; width: 285px; height: 95px; transition: all .5s; border-radius: 30px; } a.resim img:hover { border-radius: 0px; opacity: .5; }
Gibi gibi...