Fading Coder

One Final Commit for the Last Sprint

Optimizing Lazy Loading for Image Preview in el-image Component

Problem Overview In the project, images are categorized into two forms: thumbnails (small) and full-resolution versions (full). Thumbnails are displayed initially, while full-resolution images are shown up on user interaction through the el-image component. The component's preview-src-list prop expe...

Implementing Image Lazy Loading with jQuery.lazyload.js

Plugin Overview jQuery.lazyload.js is a lightweight JavaScript library that enables deferred image loading for web pages. Images outside the browser's viewport remain unloaded until they become visible through scrolling, which contrasts with traditional preloading approaches. This technique signific...