点跳动加载效果

点跳动加载效果关键点总结

  1. HTML结构:
  • 使用一个包含三个子 div 的父 div 来表示三个点。
  1. CSS样式:
  • 设置 body 的背景颜色为浅灰色,并隐藏滚动条。
  • .dot-loader 定位在页面中心,并设置其宽度和高度。
  • 每个点 (div) 设置为绝对定位,并设置不同的左偏移量以排列成一行。
  • 每个点设置不同的背景颜色:蓝色、红色和绿色。
  • 使用 @keyframes dot-jump 动画来实现点的跳动效果,调整动画时间为 1.2 秒,使跳动变慢。
  • 设置不同的 animation-delay 来错开每个点的跳动时间,使其更加自然。
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>点跳动加载效果</title>
    <style>
        body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #f0f0f0;
            margin: 0;
        }
        .dot-loader {
            display: inline-block;
            position: relative;
            width: 80px;
            height: 80px;
        }
        .dot-loader div {
            position: absolute;
            top: 33px;
            width: 13px;
            height: 13px;
            border-radius: 50%;
            animation-timing-function: ease-in-out;
            animation-delay: 0s;
        }
        .dot-loader div:nth-child(1) {
            left: 8px;
            background: #3498db; /* 蓝色 */
            animation: dot-jump 1.2s infinite;
        }
        .dot-loader div:nth-child(2) {
            left: 32px;
            background: #e74c3c; /* 红色 */
            animation: dot-jump 1.2s 0.4s infinite;
        }
        .dot-loader div:nth-child(3) {
            left: 56px;
            background: #2ecc71; /* 绿色 */
            animation: dot-jump 1.2s 0.8s infinite;
        }
        @keyframes dot-jump {
            0%, 100% { transform: scale(0); }
            50% { transform: scale(1); }
        }
    </style>
</head>
<body>
    <div class="dot-loader">
        <div></div>
        <div></div>
        <div></div>
    </div>
</body>
</html>

No responses yet

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注