Skip to content

Instantly share code, notes, and snippets.

@modos
Created August 2, 2022 20:51
Show Gist options
  • Save modos/53b64395ecab0f029e30af6cb1fc12f8 to your computer and use it in GitHub Desktop.
Save modos/53b64395ecab0f029e30af6cb1fc12f8 to your computer and use it in GitHub Desktop.
index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Blur image</title>
<style>
#image:hover {
filter: blur(8px);
-webkit-filter: blur(8px);
}
</style>
</head>
<body bgcolor='#000011'>
<img id="image" src="quera.svg" />
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment