-
-
Notifications
You must be signed in to change notification settings - Fork 676
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -113,7 +113,7 @@ Please note that the video poster can be lazily loaded too. | |
|
||
## 👩💻 Getting started - Script | ||
|
||
The latest, recommended version of LazyLoad is **14.0.0**. | ||
The latest, recommended version of LazyLoad is **14.0.1**. | ||
|
||
### To polyfill or not to polyfill IntersectionObserver? | ||
|
||
|
@@ -128,14 +128,14 @@ If you prefer to load a polyfill, the regular LazyLoad behaviour is granted. | |
The easiest way to use LazyLoad is to include the script from a CDN: | ||
|
||
```html | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].0/dist/lazyload.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/lazyload.min.js"></script> | ||
``` | ||
|
||
Or, with the IntersectionObserver polyfill: | ||
|
||
```html | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/intersection-observer.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].0/dist/lazyload.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/lazyload.min.js"></script> | ||
``` | ||
|
||
Then, in your javascript code: | ||
|
@@ -168,7 +168,7 @@ Include RequireJS: | |
Then `require` the AMD version of LazyLoad, like this: | ||
|
||
```js | ||
var lazyLoadAmdUrl = "https://cdn.jsdelivr.net/npm/[email protected].0/dist/lazyload.amd.min.js"; | ||
var lazyLoadAmdUrl = "https://cdn.jsdelivr.net/npm/[email protected].1/dist/lazyload.amd.min.js"; | ||
var polyfillAmdUrl = "https://cdn.jsdelivr.net/npm/[email protected]/intersection-observer-amd.js"; | ||
|
||
/// Dynamically define the dependencies | ||
|
@@ -214,7 +214,7 @@ Then include the script. | |
```html | ||
<script | ||
async | ||
src="https://cdn.jsdelivr.net/npm/[email protected].0/dist/lazyload.min.js" | ||
src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/lazyload.min.js" | ||
></script> | ||
``` | ||
|
@@ -247,7 +247,7 @@ Then include the script. | |
```html | ||
<script | ||
async | ||
src="https://cdn.jsdelivr.net/npm/[email protected].0/dist/lazyload.min.js" | ||
src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/lazyload.min.js" | ||
></script> | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters