Po zalogowaniu do bloggera przejdź do SZABLON>DOSTOSUJ>ZAAWANSOWANE i w arkuszu CSS wklej wybrany kod.
ZAMGLENIE
.post img{
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease
; -o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease; }
.post img:hover { opacity:0.7;
filter:alpha(opacity=50); }
CZARNO-BIAŁE
Stosując ten efekt zdjęcia na blogu staną się czarno-białe po najechaniu na kursorem.
.post img
{ -webkit-transition:
all 1s ease; -moz-transition:
all 1s ease; -o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease; }
.post img:hover { -webkit-filter:
grayscale(100%); }
POWIĘKSZENIE

.post img{
-webkit-transition: all 1s ease; -moz-transition: all 1s ease; -o-transition: all 1s ease;
}
.post img:hover {
-o-transition: all 0.6s;
-moz-transition: all 0.6s;
-webkit-transition: all 0.6s;
-moz-transform: scale(1.1);
-o-transform: scale(1.1);
-webkit-transform: scale(1.1);
}