Blurry Image Test
Samik Pal
... menit baca
Creating Blurry Image Effect using HTML and CSS only!
Hover Mouse over the image to see it!
Code for this is given below!
<div class="separator" style="clear: both; text-align: center;">
<img
alt="enter_alt"
border="0"
src="img_url"
title="enter_alt"
width="100%"
loading="lazy"
class="blurry-image"
/>
</div>
<style>
.blurry-image {
filter: blur(8px);
}
.blurry-image:hover {
filter: none;
}
</style>
Sebelumnya
...
Berikutnya
...