• CSS3实现动画加载效果


    DOCTYPE html>
    <html lang="en">
      <head>
        <meta charset="UTF-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <title>加载效果title>
        <link rel="stylesheet" href="./style.css" />
      head>
      <body>
      	
        <div class="bouncing-loader">
          <div class="bouncing-loader-item">div>
          <div class="bouncing-loader-item">div>
          <div class="bouncing-loader-item">div>
        div>
    
    	
        <div class="spin-loading">
          <div class="loading">div>
        div>
    
    	
        <span class="dot">正在加载中<span class="dotted">span>span>
      body>
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    /* style.css */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    html,
    body {
      display: flex;
    }
    /* 弹跳加载效果 */
    .bouncing-loader,
    .spin-loading,
    .dot {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 150px;
      border: 1px solid #efefef;
      margin: 3rem;
    }
    .bouncing-loader-item {
      width: 16px;
      height: 16px;
      margin: 3rem 0.2rem;
      background-color: #0b16f1;
      border-radius: 50%;
      animation: bouncingLoader 0.6s infinite alternate;
    }
    .bouncing-loader-item:nth-child(2) {
      animation-delay: 0.2s;
    }
    .bouncing-loader-item:nth-child(3) {
      animation-delay: 0.4s;
    }
    @keyframes bouncingLoader {
      to {
        opacity: 0.1;
        transform: translate3d(0, -10px, 0);
      }
    }
    
    /* 旋转动画效果 */
    .spin-loading .loading {
      width: 100%;
      aspect-ratio: 1;
      border-radius: 100%;
      /* 锥形渐变 */
      background-image: conic-gradient(#0b16f1, 30%, #fff);
      /* 使用蒙版将中间变为透明 */
      -webkit-mask-image: radial-gradient(closest-side, transparent 80%, black 80%);
      /* 开启动画 */
      animation: spin 1s linear infinite reverse;
    }
    
    @keyframes spin {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }
    /* ...动画效果 */
    .dotted {
      display: inline-block;
      width: 20px;
    }
    .dotted::after {
      content: '';
      animation: dotted 2s infinite;
    }
    @keyframes dotted {
      0% {
        content: '...';
      }
      25% {
        content: '';
      }
      50% {
        content: '.';
      }
      75% {
        content: '..';
      }
      100% {
        content: '...';
      }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90

    在这里插入图片描述

  • 相关阅读:
    首个多云检索开源项目 Clusterpedia 正式进入 CNCF 沙箱
    (UE4升级UE5)Selected Level Actor节点升级到UE5
    odoo15 大部分模块都用的附件整理成一独立模块
    git常见操作
    看完这篇 教你玩转渗透测试靶机Vulnhub——Grotesque:1.0.1
    使用链表实现队列操作
    javaweb基础:过滤器Filter
    GO 语言的并发模式你了解多少?
    树莓派无需显示屏的VNC Viewer方式的远程连接
    YOLO系列 --- YOLOV7算法(七):YOLOV7算法总结
  • 原文地址:https://blog.csdn.net/m0_46219714/article/details/133612130