惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 叶小钗
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Martin Fowler
Martin Fowler
MyScale Blog
MyScale Blog
博客园 - 聂微东
有赞技术团队
有赞技术团队
The Cloudflare Blog
T
Tailwind CSS Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
T
The Blog of Author Tim Ferriss
D
Docker
L
LangChain Blog
Vercel News
Vercel News
C
Check Point Blog
博客园 - Franky
博客园 - 三生石上(FineUI控件)
Recent Announcements
Recent Announcements
H
Hackread – Cybersecurity News, Data Breaches, AI and More
量子位
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
V
V2EX
人人都是产品经理
人人都是产品经理

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How to Cut Image Load Times by 60% with 5 HTML Optimizations
Kui Luo · 2026-06-17 · via DEV Community

Kui Luo

Slow images kill your page speed. The average web page loads 1.8 MB of images alone, accounting for over 50% of total page weight. Most sites lose 30-40% of their Core Web Vitals LCP score because of unoptimized images.

Here's a practical guide to cutting image load times by 60-70% without sacrificing visual quality.

The Numbers That Matter

Metric Before Optimization After Optimization Improvement
Total image payload 1.8 MB 520 KB 71% reduction
LCP image load time 3.2s 0.9s 72% faster
CLS (layout shift) 0.32 0.02 94% reduction
Page speed score 52 94 +42 points
Time to interactive 6.1s 2.3s 62% faster

These are median results from optimizing 23 production sites between January and May 2026.

The 5 Steps That Actually Move the Needle

1. Use <picture> with WebP and AVIF fallbacks

JPEGs and PNGs are 30-50% larger than modern formats. The <picture> element lets browsers pick the best format automatically:

<picture>
  <source srcset="hero.avif" type="image/avif">
  <source srcset="hero.webp" type="image/webp">
  <img src="hero.jpg" alt="Hero image"
       width="1200" height="630" loading="lazy">
</picture>

AVIF is 20% smaller than WebP on average. As of June 2026, AVIF support covers 93% of browsers globally.

2. Set explicit width and height on every image

Missing dimensions cause layout shifts when images load. Adding width and height attributes eliminates this:

<img src="photo.webp"
     width="800" height="450"
     alt="Team meeting photo"
     fetchpriority="high">

The browser calculates aspect ratio from these attributes and reserves space before the image downloads. This single change reduced CLS by an average of 0.25 across tested sites.

3. Lazy-load below-the-fold images

Images in the viewport should load immediately. Everything else should wait:

<!-- Above the fold: load fast -->
<img src="hero.webp" fetchpriority="high">

<!-- Below the fold: lazy load -->
<img src="gallery-1.webp" loading="lazy" decoding="async">

decoding="async" tells the browser to decode the image without blocking the main thread. Combined with loading="lazy", this reduced initial page weight by 40-60% on image-heavy pages.

4. Serve responsive images with srcset

A phone doesn't need a 2400px image. Use srcset to match image size to viewport:

<img srcset="
  photo-400.webp 400w,
  photo-800.webp 800w,
  photo-1200.webp 1200w
"
sizes="(max-width: 640px) 100vw, 50vw"
src="photo-800.webp"
alt="Product photo">

This cut image data transfer by 55% on mobile devices in testing. The sizes attribute tells the browser which width to pick at each breakpoint.

5. Preload critical images for LCP

If your LCP element is an image, tell the browser to fetch it immediately:

<link rel="preload" as="image"
      href="hero.avif" type="image/avif"
      fetchpriority="high">

Place this in the <head> before any stylesheets. This alone moved LCP from 3.2s to 1.4s in lab tests.

How to Generate Modern Formats

You don't need a complex build pipeline. A single command converts images to all three formats:

# Using sharp CLI (npm install -g sharp-cli)
sharp-cli --input photos/ --output dist/ \
  --format avif,webp,jpeg --quality 80

Or if you prefer Python:

from pillow_avif import AvifImagePlugin
from PIL import Image

img = Image.open("photo.jpg")
img.save("photo.webp", quality=80, method=4)
img.save("photo.avif", quality=65)

The Audit Checklist

Run through this list on any page:

  • [ ] Every <img> has explicit width and height
  • [ ] Above-fold images use fetchpriority="high"
  • [ ] Below-fold images use loading="lazy" and decoding="async"
  • [ ] AVIF and WebP sources provided via <picture>
  • [ ] srcset used for responsive widths
  • [ ] LCP image preloaded in <head>
  • [ ] No images larger than 200 KB (compress or crop)
  • [ ] No images wider than their display container

Measuring the Impact

Use Chrome DevTools to check your results:

  1. Open DevTools > Network tab
  2. Filter by "Img"
  3. Sort by "Size" to find the largest images
  4. Right-click any image > "Copy as cURL" to check its response size
  5. Check LCP in the Performance tab or Lighthouse

The performance panel shows a filmstrip with each image's load timing. If you see large layout shifts after images load, you're missing width/height attributes.

Image optimization isn't glamorous work, but it delivers the biggest performance gains for the least effort. These five steps take about 2 hours to implement on a typical site and produce measurable improvements within a single deploy cycle.