I've got a CSS filter for blurring an element and it works beautifully... But I'd like it to ease into the blur but can't figure out what css transition-property
controls it?
I was using transition: 1s;
but that breaks another animation on the element (it slides out to the left).
.event {
// transition: 1s; // Works with blur() but breaks other animations
}
.event:hover {
-moz-filter: blur(5px);
-ms-filter: blur(5px);
-o-filter: blur(5px);
-webkit-filter: blur(5px);
filter: blur(5px);
}