aloerina01 / til

1日1つだけ強くなる
6 stars 0 forks source link

2018/11/07 Nightwatch.js IntersectionObserver-polyfill #75

Open aloerina01 opened 6 years ago

aloerina01 commented 6 years ago

Nightwatch.js | Node.js powered End-to-End testing framework

IntersectionObserver/polyfill at master · w3c/IntersectionObserver

MutationObserver - Web API インターフェイス | MDN

Google、SEOに適したLazyloadの仕様を公開 | 海外SEO情報ブログ

Config Files · Babel

hatashiro commented 6 years ago

最近担当したプロジェクトではinfinite loadをIntersectionObserver(+ polyfill)で実装しました。具体的にはページ下のローディング要素にIntersectionObserverを設置して、intersectionRatioが一定以上だとロードを実行する感じです。スクロールイベント処理より実装も簡単でして、パフォーマンス的にも良いかなと。

aloerina01 commented 6 years ago

polyfill使えばproductionでも利用できる感じなんですね(そこが気になったのでpolyfillのソース読んでました)。コンテンツの遅延読込&遅延描画しているプロジェクトのリニューアルが近々あるので検討してみます!