mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-02-10 05:55:23 -05:00
12 lines
391 B
TypeScript
12 lines
391 B
TypeScript
|
|
export const isBackdropFilterSupported = (): boolean => {
|
|
// https://developer.mozilla.org/en-US/docs/Web/API/CSS/supports
|
|
// https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility
|
|
return (
|
|
typeof CSS !== 'undefined' && (
|
|
CSS.supports('-webkit-backdrop-filter', 'blur(1px)') ||
|
|
CSS.supports('backdrop-filter', 'blur(1px)')
|
|
)
|
|
);
|
|
}
|