From 63311acf71c8601099e80eca1bc0cac62b386b19 Mon Sep 17 00:00:00 2001 From: Johann Schopplich Date: Tue, 12 Mar 2024 15:57:59 +0100 Subject: [PATCH] docs: Safari supports lazy loading since 15.4 --- docs/guide/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/index.md b/docs/guide/index.md index faa20eb..0920988 100644 --- a/docs/guide/index.md +++ b/docs/guide/index.md @@ -5,7 +5,7 @@ unlazy is a universal lazy loading library leveraging native browser APIs. It's Images are initially rendered with blurry placeholders, giving the user an impression of the page layout and content. As the images enter the viewport, they are replaced with the full-quality versions, providing a smoother experience. This approach prioritizes the initial rendering of the page and improves the perceived performance for users, especially when the connection is slow or unstable. ::: info -Although the `loading="lazy"` attribute is supported in all major browsers, it is only available in Safari 16.4 (released March 2023) and later versions by default. If native lazy loading is not supported, unlazy will fall back to eager loading. +Although the `loading="lazy"` attribute is supported in all major browsers, it is only available in Safari 15.4 (released March 2022) and later versions by default. If native lazy loading is not supported, unlazy will fall back to eager loading. ::: ## How It Works