giangtranguyen: (Default)
Nguyễn Trà Giang ([personal profile] giangtranguyen) wrote in [community profile] twine_tutorials2017-07-05 03:56 pm

How To Make Your Image No Longer Blurry When Hover

Just copy and paste the code into the Story Stylesheets, then adjust it to your liking.

For example:


img {
-webkit-filter: blur(5px);
filter: blur(5px);
}

img:hover {
-webkit-filter: blur(0px);
filter: blur(0px);
}