Posting kali ni saya nak kongsi mengenai kod CSS3 untuk membuat efek filter pada gambar. Disini saya akan menunjukkan beberapa jenis filter yang boleh digunakan di blogger anda. Kalau nak gunakan kat website pun boleh....Cube anda sentuh contoh gambar2 dibawah untuk lihat efek k..
Efek filter + Hover
HUE ROTATE
CONTOH: HUE ROTATE |
BLUR
SEPIA
CONTOH: SEPIA |
INVERT
CONTOH: INVERT |
BRIGHTNESS
CONTOH: BRIGHTNESS |
OPACITY
CONTOH: OPACITY |
Efek filter tanpa Hover
HUE ROTATE | GRAYSCALE | BLUR |
SATURATE | SEPIA | INVERT |
BRIGHTNESS | CONTRAST | OPACITY |
saya nak guna satu ye ^_^
ReplyDeletegne hue rotate efek ye,,,hehe
ReplyDeletekalau nk hue rotate animation gne kod ni
img{
box-shadow:0px 0px 0px #333;
transition:1500ms;
-webkit-transition:1500ms;
-moz-transition:1500ms;
-o-filter-transition:1500ms;
-ms-transition:1500ms;
}
@-webkit-keyframes hue {
100% { -webkit-filter:hue-rotate(360deg);}
100% { -moz-filter:hue-rotate(360deg);}
100% { -o-filter:hue-rotate(360deg);}
100% { -ms-filter:hue-rotate(360deg);}
100% { filter:hue-rotate(360deg);}
}
img:hover {
animation:hue 1s linear infinite;
-webkit-animation:hue 1s linear infinite;
-moz--animation:hue 1s linear infinite;
-o-animation:hue 1s linear infinite;
-ms-animation:hue 1s linear infinite;
}