CSS+HTML to implement Skeleton Screen loading placeholder animation effect (with animation)

CSS+HTML to implement Skeleton Screen loading placeholder animation effect (with animation)

Effect

Fading from top to bottom

Source code

html, using angular syntax, just make simple changes to get the syntax you need

<div *ngFor="let item of [1,1,1],index as index" class="skeletonItem anim-opacity2 animation-delay{{index}}">
        <div class="skeletonText"></div>
        <div class="skeletonText" style="width:70%"></div>
        <div class="skeletonText" style="width:40%"></div>
      </div>

CSS

.skeletonItem {
      padding: 16px;
      border-bottom: 3px solid #eee;
    }

    .skeletonText {
      height: 16px;
      background: #e2e2e2;
      margin-top: 12px;
      border-radius: 4px;
    }

    .skeletonText:first-child {
      margin-top: 0;
    }
    .anim-opacity2 {
      animation: 1.5s opacity2 0s infinite;
    }
    .animation-delay0 {
      animation-delay: 0s;
    }
    .animation-delay1 {
      animation-delay: 0.5s;

    }
    .animation-delay2 {
      animation-delay: 1s;
    }

    @keyframes opacity2 {
      0% {
        opacity: 0.5
      }
      50% {
        opacity: 1;
      }
      100% {
        opacity: 0.5;
      }
    }

Summarize

This is the end of this article about how to use CSS+HTML to implement the Skeleton Screen loading placeholder animation effect (with animation). For more related Skeleton Screen loading placeholder content, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

<<:  Docker image optimization (from 1.16GB to 22.4MB)

>>:  Learn how to use JavaScript's new Element Traversal property to traverse child elements

Recommend

Detailed explanation of vite2.0+vue3 mobile project

1. Technical points involved vite version vue3 ts...

Vue integrates PDF.js to implement PDF preview and add watermark steps

Table of contents Achieve results Available plugi...

Native JS to implement sharing sidebar

This article shares a sharing sidebar implemented...

jQuery treeview tree structure application

This article example shares the application code ...

JavaScript typing game

This article shares the specific code of JavaScri...

Detailed code for adding electron to the vue project

1. Add in package.json "main": "el...

Instructions for recovering data after accidental deletion of MySQL database

In daily operation and maintenance work, backup o...

Implementation code for adding slash to Vue element header

<template> <div class="app-containe...

An example of implementing a simple infinite loop scrolling animation in Vue

This article mainly introduces an example of Vue ...

React example showing file upload progress

Table of contents React upload file display progr...

Problems and solutions for installing Docker on Alibaba Cloud

question When installing Docker using Alibaba Clo...

Detailed explanation of MySQL 8's new feature ROLE

What problems does MySQL ROLE solve? If you are a...

Summary of five commands to check swap space in Linux

Preface Two types of swap space can be created un...