Resim renksiz{siyah-beyaz} oluyor ve üzerine gelince kendi renklerini alıyor. Bunu CSS ile nasıl yapabilirim acaba?
Birkaç sitede görmüştüm gerçekten hoş bir görüntü oluyor.
Ek Olarak: Bilen yok mu ya koskoca forumda!?
CSS ile Resmi Siyah-Beyaz Yapma? Yardım! |
7 Mesajlar | 5.502 Okunma |
<script></script>
<script>
$(document).ready(function(){
$("img.a").hover(
function() {
$(this).stop().animate({"opacity": "0"}, "slow");
},
function() {
$(this).stop().animate({"opacity": "1"}, "slow");
});
});
</script>
jQuery Hover Effect
<script></script>
<script>
$(document).ready(function(){
$("img.a").hover(
function() {
$(this).stop().animate({"opacity": "0"}, "slow");
},
function() {
$(this).stop().animate({"opacity": "1"}, "slow");
});
});
</script>