


Example sharing of css implementation of placeholder display when the image is not loaded
Through css control, when loading network images, a local placeholder image is displayed when the loading is not completed, and the network image is displayed after the loading is completed;
Principle: Through the after pseudo-element in the img tag Add a placeholder image, and set both img to position: relative; after setting position: absolute; the src of the img tag is a network image. When loading, because the network image has not been loaded, the local image will be displayed. The following case The js in it deliberately delays setting the src attribute of img for obvious effects.
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <style> img { position: relative; } img::after { content: ""; height: 100%; width: 100%; position: absolute; left: 0; top: 0; background: url(iphonex.png ) no-repeat center; } </style></head><body> <img src=""></body><script> setTimeout(function() { document.querySelectorAll("img")[0].src = 'http://upload-images.jianshu.io/upload_images/7450593-65067eb4cf76d882.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240'; }, 3000);</script></html>
Benefits at the end of the article:
Benefit 1: A collection of front-end, Java, product manager, WeChat applet, Python and other resources are given away: https://www.jianshu.com/p/e8197d4d9880
Benefit 2: A full set of detailed video tutorials on getting started with WeChat mini programs and in practice: https://www.jianshu.com/p/e8197d4d9880
The above is the detailed content of Example sharing of css implementation of placeholder display when the image is not loaded. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to implement a custom theme by overriding the SCSS variable of Element? Using Element...

How to use locally installed font files on web pages In web development, users may want to use specific fonts installed on their computers to enhance the network...

CSS gradient color effect implementation: Gradient background color from top to bottom In web design, how to transition from left to right in the search box and the background color under the carousel image...

How to customize resize symbols with CSS to match background color? In web design, the details of the user experience can often significantly improve the overall effect. For example...

How to solve the problem of page jitter caused by dynamically setting elements to fixed by JS. When dynamically setting elements to fixed by JavaScript, you sometimes encounter page jitter...

Under fixed width layout, the subtle relationship between font size and letter width When designing web pages, we often encounter the need to line up in fixed width containers...

The problem of alignment at the bottom of CSS text: The vertical arrangement of different font sizes and fonts in CSS style design, you often encounter the need to align different font sizes and...

Discussion on the implementation method of front-end progress bar In front-end development, implementing a progress bar seems simple, but to meet the precise requirements of the design draft, you may encounter a...
