mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-02-09 05:25:15 -05:00
12 lines
415 B
TypeScript
12 lines
415 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 != null && (
|
|
CSS.supports('-webkit-backdrop-filter', 'blur(1px)') ||
|
|
CSS.supports('backdrop-filter', 'blur(1px)')
|
|
)
|
|
);
|
|
}
|