什麼是無限滾動以及它的必要性?
滾動是水平或垂直移動網頁上部分內容的使用者操作(在大多數情況下)。
就像您在閱讀本文時所做的那樣。
無限意味著當您向下捲動網頁時,新內容會自動載入。
好吧,但是為什麼每個人都應該實現它?
可發現性
讓我們想像一下您最喜歡的電子商務商店正在舉辦黑色星期五促銷活動。
您在探索頁面上找到了幾個產品,但當您滾動到網頁底部而不是更多產品時,您發現了一個按鈕,可將您帶到下一個產品列表。
您將能夠看到新產品(但前提是您注意到該操作按鈕)。
無限滾動只是幫助用戶找到更多他們可能錯過的內容。
執行
為了實現無限滾動,我們需要檢查使用者是否到達頁面底部或容器。
但是偵測滾動的位置是非常昂貴的,並且由於不同的瀏覽器和設備,其位置值不可靠。
所以一個方法是觀看頁面的最後內容(元素)及其與視窗或容器的交點。
我們如何找到交點?
路口觀察者
它是一個 Web API,允許觀察內容或清單末尾的元素。
當這個元素(「哨兵」)變得可見(與視窗相交時,它會觸發回調函數。
透過這個函數我們可以取得更多資料並將其載入到網頁中。
整個觀察是異步發生的,這最小化對主執行緒的影響。
為了在 Reactjs 中實作 Intersection Observer,我們將以社群動態為例,我們將在貼文清單上進行無限滾動。
看一下這個組件,您就可以了解下面每個部分的詳細情況。
import { useEffect, useRef, useState } from "react"; interface IIntersectionObserverProps {} const allItems = [ "https://picsum.photos/200", "https://picsum.photos/200", "https://picsum.photos/200", "https://picsum.photos/200", ]; const IntersectionObserverImplement: React.FunctionComponent = (props) => { const cardRefs = useRef([]); // Initialize as an empty array const containerRef = useRef<htmldivelement null>(null); const [listItems, setListItems] = useState(allItems); useEffect(() => { const options = { root: containerRef.current, rootMargin: "0px", threshold: 0.5, }; const observer = new IntersectionObserver((entries, observer) => { entries.forEach((entry) => { if (entry.isIntersecting) { setListItems((prevItems) => [ ...prevItems, "https://picsum.photos/200", ]); observer.unobserve(entry.target); // Stop observing the current element } }); }, options); // Observe the last card only const lastCard = cardRefs.current[listItems.length - 1]; if (lastCard) { observer.observe(lastCard); } return () => observer.disconnect(); // Clean up observer on unmount }, [listItems]); return ( <div classname="container" ref="{containerRef}"> {listItems.map((eachItem, index) => ( <div classname="card" ref="{(el)"> (cardRefs.current[index] = el)} // Assign refs correctly key={index} > <h5 id="Post-index">Post {index}</h5> <img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/173443591411756.jpg?x-oss-process=image/resize,p_40" class="lazy" style="max-width:90%"200"}' height='{"150"}' alt="Reactjs 教學:使用 Intersection Observer 進行無限滾動。" > </div> ))} </div> ); }; export default IntersectionObserverImplement; </htmldivelement>
目標是偵測提要清單中的最後一個貼文(稱為哨兵)何時與視窗相交。一旦發生這種情況,就會加載並顯示更多帖子。
一個。初始化狀態和引用
const cardRefs = useRef([]); // For storing references to each card const containerRef = useRef<htmldivelement null>(null); // Reference to the scrollable container const [listItems, setListItems] = useState(allItems); // State to hold the list of items </htmldivelement>
cardRefs 一個數組,用來追蹤表示清單中卡片的 DOM 元素。
containerRef 指的是可滾動容器。
listItems 儲存頁面上目前可見項目的陣列。
b.渲染清單並分配引用
return ( <div classname="container" ref="{containerRef}"> {listItems.map((eachItem, index) => ( <div classname="card" ref="{(el)"> (cardRefs.current[index] = el)} // Assign a ref to each card key={index} > <h5 id="Post-index">Post {index}</h5> <img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/173443591411756.jpg?x-oss-process=image/resize,p_40" class="lazy" style="max-width:90%"200"}' height='{"150"}' alt="Reactjs 教學:使用 Intersection Observer 進行無限滾動。" > </div> ))} </div> );
containerRef 標記將發生滾動的容器。
cardRefs 為清單中的每張卡片分配一個參考。這確保我們可以告訴觀察者要監視哪個元素(例如,最後一張卡片)。
映射 listItems 以呈現清單中的每個項目。
每個 div 都被設計成一張卡片,並且有一個唯一的 React 鍵。
c.觀察最後一個貼文(項目)。
import { useEffect, useRef, useState } from "react"; interface IIntersectionObserverProps {} const allItems = [ "https://picsum.photos/200", "https://picsum.photos/200", "https://picsum.photos/200", "https://picsum.photos/200", ]; const IntersectionObserverImplement: React.FunctionComponent = (props) => { const cardRefs = useRef([]); // Initialize as an empty array const containerRef = useRef<htmldivelement null>(null); const [listItems, setListItems] = useState(allItems); useEffect(() => { const options = { root: containerRef.current, rootMargin: "0px", threshold: 0.5, }; const observer = new IntersectionObserver((entries, observer) => { entries.forEach((entry) => { if (entry.isIntersecting) { setListItems((prevItems) => [ ...prevItems, "https://picsum.photos/200", ]); observer.unobserve(entry.target); // Stop observing the current element } }); }, options); // Observe the last card only const lastCard = cardRefs.current[listItems.length - 1]; if (lastCard) { observer.observe(lastCard); } return () => observer.disconnect(); // Clean up observer on unmount }, [listItems]); return ( <div classname="container" ref="{containerRef}"> {listItems.map((eachItem, index) => ( <div classname="card" ref="{(el)"> (cardRefs.current[index] = el)} // Assign refs correctly key={index} > <h5 id="Post-index">Post {index}</h5> <img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/173443591411756.jpg?x-oss-process=image/resize,p_40" class="lazy" style="max-width:90%"200"}' height='{"150"}' alt="Reactjs 教學:使用 Intersection Observer 進行無限滾動。" > </div> ))} </div> ); }; export default IntersectionObserverImplement; </htmldivelement>
選項物件
const cardRefs = useRef([]); // For storing references to each card const containerRef = useRef<htmldivelement null>(null); // Reference to the scrollable container const [listItems, setListItems] = useState(allItems); // State to hold the list of items </htmldivelement>
root 指定滾動容器。
containerRef.current 指的是包裹所有卡片的 div。
如果 root 為 null,則預設觀察視窗。
rootMargin:定義根周圍的額外邊距。
「0px」表示沒有多餘的空間。您可以使用「100px」之類的值來提前觸發觀察者(例如,當元素即將出現時)。
閾值:決定觀察者觸發時目標元素必須可見的程度。
0.5 表示當最後一張卡片的 50% 可見時觸發回調。
建立觀察者
return ( <div classname="container" ref="{containerRef}"> {listItems.map((eachItem, index) => ( <div classname="card" ref="{(el)"> (cardRefs.current[index] = el)} // Assign a ref to each card key={index} > <h5 id="Post-index">Post {index}</h5> <img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/173443591411756.jpg?x-oss-process=image/resize,p_40" class="lazy" style="max-width:90%"200"}' height='{"150"}' alt="Reactjs 教學:使用 Intersection Observer 進行無限滾動。" > </div> ))} </div> );
IntersectionObserver 接受回呼函數和先前定義的選項物件。
每當觀察到的元素滿足選項中指定的條件時,回呼就會運作。
entries 參數是觀察到的元素的陣列。每個條目都包含有關元素是否相交(可見)的資訊。
如果entry.isIntersecting為true,則表示最後一張卡片現在可見:
- 使用 setListItems 將新項目加入清單。
- 取消觀察目前元素(entry.target)以防止冗餘觸發器。
觀察最後一張牌
useEffect(() => { const options = { root: containerRef.current, rootMargin: "0px", threshold: 0.5, }; const observer = new IntersectionObserver((entries, observer) => { entries.forEach((entry) => { if (entry.isIntersecting) { setListItems((prevItems) => [ ...prevItems, "https://picsum.photos/200", ]); observer.unobserve(entry.target); // Stop observing the current element } }); }, options); // Observe each card const lastCard = cardRefs.current[listItems.length - 1]; if (lastCard) { observer.observe(lastCard); } return () => observer.disconnect(); // Clean up observer on unmount }, [listItems]);
cardRefs.current:追蹤對所有卡片的引用。
listItems.length - 1:標識清單中的最後一項。
如果lastCard存在,使用observer.observe(lastCard)開始觀察它。
觀察者會監聽這張卡片,並在它可見時觸發回調。
清理
const options = { root: containerRef.current, // Observe within the container rootMargin: "0px", // No margin around the root container threshold: 0.5, // Trigger when 50% of the element is visible };
observer.disconnect() 刪除此 useEffect 所建立的所有觀察者。
這確保了當元件卸載或重新渲染時,舊的觀察者被清理。
每個階段會發生什麼事?
1。使用者滾動
當使用者捲動時,最後一張卡片進入視圖
2。路口觀察者觸發器
當最後一張牌的50%可見時,觀察者的回檔
運行。
3。新增項目
回呼將新項目加入到清單中 (setListItems)。
4。重複
觀察者與舊的最後一張卡片斷開連接並附加到
新的最後一張卡。
這就是我們如何使用 Intersection Observer.
實現無限滾動希望這對您有幫助:)
謝謝。
以上是Reactjs 教學:使用 Intersection Observer 進行無限滾動。的詳細內容。更多資訊請關注PHP中文網其他相關文章!

JavaScript字符串替換方法詳解及常見問題解答 本文將探討兩種在JavaScript中替換字符串字符的方法:在JavaScript代碼內部替換和在網頁HTML內部替換。 在JavaScript代碼內部替換字符串 最直接的方法是使用replace()方法: str = str.replace("find","replace"); 該方法僅替換第一個匹配項。要替換所有匹配項,需使用正則表達式並添加全局標誌g: str = str.replace(/fi

因此,在這裡,您準備好了解所有稱為Ajax的東西。但是,到底是什麼? AJAX一詞是指用於創建動態,交互式Web內容的一系列寬鬆的技術。 Ajax一詞,最初由Jesse J創造

10款趣味橫生的jQuery遊戲插件,讓您的網站更具吸引力,提升用戶粘性!雖然Flash仍然是開發休閒網頁遊戲的最佳軟件,但jQuery也能創造出令人驚喜的效果,雖然無法與純動作Flash遊戲媲美,但在某些情況下,您也能在瀏覽器中獲得意想不到的樂趣。 jQuery井字棋遊戲 遊戲編程的“Hello world”,現在有了jQuery版本。 源碼 jQuery瘋狂填詞遊戲 這是一個填空遊戲,由於不知道單詞的上下文,可能會產生一些古怪的結果。 源碼 jQuery掃雷遊戲

本教程演示瞭如何使用jQuery創建迷人的視差背景效果。 我們將構建一個帶有分層圖像的標題橫幅,從而創造出令人驚嘆的視覺深度。 更新的插件可與JQuery 1.6.4及更高版本一起使用。 下載

Matter.js是一個用JavaScript編寫的2D剛體物理引擎。此庫可以幫助您輕鬆地在瀏覽器中模擬2D物理。它提供了許多功能,例如創建剛體並為其分配質量、面積或密度等物理屬性的能力。您還可以模擬不同類型的碰撞和力,例如重力摩擦力。 Matter.js支持所有主流瀏覽器。此外,它也適用於移動設備,因為它可以檢測觸摸並具有響應能力。所有這些功能都使其值得您投入時間學習如何使用該引擎,因為這樣您就可以輕鬆創建基於物理的2D遊戲或模擬。在本教程中,我將介紹此庫的基礎知識,包括其安裝和用法,並提供一

本文演示瞭如何使用jQuery和ajax自動每5秒自動刷新DIV的內容。 該示例從RSS提要中獲取並顯示了最新的博客文章以及最後的刷新時間戳。 加載圖像是選擇

本文討論了在瀏覽器中優化JavaScript性能的策略,重點是減少執行時間並最大程度地減少對頁面負載速度的影響。


熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章

熱工具

Safe Exam Browser
Safe Exam Browser是一個安全的瀏覽器環境,安全地進行線上考試。該軟體將任何電腦變成一個安全的工作站。它控制對任何實用工具的訪問,並防止學生使用未經授權的資源。

SublimeText3 Mac版
神級程式碼編輯軟體(SublimeText3)

Atom編輯器mac版下載
最受歡迎的的開源編輯器

PhpStorm Mac 版本
最新(2018.2.1 )專業的PHP整合開發工具

VSCode Windows 64位元 下載
微軟推出的免費、功能強大的一款IDE編輯器