Thanks for sharing your discoveries BTCHow does this differ from filter:blur() ?<:-)
--
You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+...@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/8606c83e-e3d9-46b2-a35e-22b6f3a241b9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
The difference is that the new backdrop filter is applied to the content that lies behind the element with that style; it’s like a fancy kind of opacity that let’s the underlying content show through. The old blur filter is just applied to the content within the element to which it is applied. The reason that browsers are adding this effect is because iOS, macOS and Windows all use it extensively in their windowing UIs.Best wishesJeremy.
It's a cool filter, is there a way that it doesn't get used on animation frames?I have it on tiddler backgrounds and closing a tiddler creates something like a temporary blur-artifact which I'd want to eliminateSomething like .tc-tiddler-frame:not(is-animating) {-webkit-backdrop-filter: blur(10px);}
--
You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+...@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/e6f52613-35ba-4765-b81f-72d0830c99fa%40googlegroups.com.
Hi BurningTreeCIt's a cool filter, is there a way that it doesn't get used on animation frames?I have it on tiddler backgrounds and closing a tiddler creates something like a temporary blur-artifact which I'd want to eliminateSomething like .tc-tiddler-frame:not(is-animating) {-webkit-backdrop-filter: blur(10px);}That sounds like a browser bug; there are often glitches with the new stuff.
The other thing to watch is that the effect is intrinsically much, much slower than an ordinary paint operation, particularly on mobile devices.