{
  "id": "Li-Deheng_bright-firefox-37",
  "name": "bright-firefox-37",
  "category": "loaders",
  "author": "Li-Deheng",
  "description": "bright-firefox-37 组件 (animation, loader, dots, animated, pulse, infinite, waves, dot loader)",
  "tags": [
    "animation",
    "loader",
    "dots",
    "animated",
    "pulse",
    "infinite",
    "waves",
    "dot loader"
  ],
  "original": {
    "html": "<div class=\"loader\">\n  <div class=\"circle\">\n    <div class=\"dot\"></div>\n    <div class=\"outline\"></div>\n  </div>\n  <div class=\"circle\">\n    <div class=\"dot\"></div>\n    <div class=\"outline\"></div>\n  </div>\n  <div class=\"circle\">\n    <div class=\"dot\"></div>\n    <div class=\"outline\"></div>\n  </div>\n  <div class=\"circle\">\n    <div class=\"dot\"></div>\n    <div class=\"outline\"></div>\n  </div>\n</div>",
    "css": "/* From Uiverse.io by Li-Deheng - Tags: animation, loader, dots, animated, pulse, infinite, waves, dot loader */\n.loader {\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  --color: hsl(0, 0%, 87%);\n  --animation: 2s ease-in-out infinite;\n}\n\n.loader .circle {\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  position: relative;\n  width: 20px;\n  height: 20px;\n  border: solid 2px var(--color);\n  border-radius: 50%;\n  margin: 0 10px;\n  background-color: transparent;\n  animation: circle-keys var(--animation);\n}\n\n.loader .circle .dot {\n  position: absolute;\n  transform: translate(-50%, -50%);\n  width: 16px;\n  height: 16px;\n  border-radius: 50%;\n  background-color: var(--color);\n  animation: dot-keys var(--animation);\n}\n\n.loader .circle .outline {\n  position: absolute;\n  transform: translate(-50%, -50%);\n  width: 20px;\n  height: 20px;\n  border-radius: 50%;\n  animation: outline-keys var(--animation);\n}\n\n.circle:nth-child(2) {\n  animation-delay: 0.3s;\n}\n\n.circle:nth-child(3) {\n  animation-delay: 0.6s;\n}\n\n.circle:nth-child(4) {\n  animation-delay: 0.9s;\n}\n\n.circle:nth-child(5) {\n  animation-delay: 1.2s;\n}\n\n.circle:nth-child(2) .dot {\n  animation-delay: 0.3s;\n}\n\n.circle:nth-child(3) .dot {\n  animation-delay: 0.6s;\n}\n\n.circle:nth-child(4) .dot {\n  animation-delay: 0.9s;\n}\n\n.circle:nth-child(5) .dot {\n  animation-delay: 1.2s;\n}\n\n.circle:nth-child(1) .outline {\n  animation-delay: 0.9s;\n}\n\n.circle:nth-child(2) .outline {\n  animation-delay: 1.2s;\n}\n\n.circle:nth-child(3) .outline {\n  animation-delay: 1.5s;\n}\n\n.circle:nth-child(4) .outline {\n  animation-delay: 1.8s;\n}\n\n.circle:nth-child(5) .outline {\n  animation-delay: 2.1s;\n}\n\n@keyframes circle-keys {\n  0% {\n    transform: scale(1);\n    opacity: 1;\n  }\n\n  50% {\n    transform: scale(1.5);\n    opacity: 0.5;\n  }\n\n  100% {\n    transform: scale(1);\n    opacity: 1;\n  }\n}\n\n@keyframes dot-keys {\n  0% {\n    transform: scale(1);\n  }\n\n  50% {\n    transform: scale(0);\n  }\n\n  100% {\n    transform: scale(1);\n  }\n}\n\n@keyframes outline-keys {\n  0% {\n    transform: scale(0);\n    outline: solid 20px var(--color);\n    outline-offset: 0;\n    opacity: 1;\n  }\n\n  100% {\n    transform: scale(1);\n    outline: solid 0 transparent;\n    outline-offset: 20px;\n    opacity: 0;\n  }\n}",
    "file_path": "/mnt/persist/workspace/loaders/Li-Deheng_bright-firefox-37.html"
  },
  "uniapp": {
    "template": "<view class=\"loader\"></view>\n  <view class=\"circle\"></view>\n    <view class=\"dot\"></view>\n    <view class=\"outline\"></view>\n  </div>\n  <view class=\"circle\"></view>\n    <view class=\"dot\"></view>\n    <view class=\"outline\"></view>\n  </div>\n  <view class=\"circle\"></view>\n    <view class=\"dot\"></view>\n    <view class=\"outline\"></view>\n  </div>\n  <view class=\"circle\"></view>\n    <view class=\"dot\"></view>\n    <view class=\"outline\"></view>\n  </div>\n</div>",
    "script": "export default {\n  name: 'GalaxyBrightFirefox37',\n  props: {\n    // 根据组件类型动态生成props\n  },\n  data() {\n    return {\n      // 组件状态\n    };\n  },\n  methods: {\n    // 组件方法\n  }\n}",
    "style": "\n/* From Uiverse.io by Li-Deheng - Tags: animation, loader, dots, animated, pulse, infinite, waves, dot loader */\n.loader {\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  --color: hsl(0, 0%, 87%);\n  --animation: 2s ease-in-out infinite;\n}\n\n.loader .circle {\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  position: relative;\n  width: 40rpx;\n  height: 40rpx;\n  border: solid 4rpx var(--color);\n  border-radius: 50%;\n  margin: 0 20rpx;\n  background-color: transparent;\n  animation: circle-keys var(--animation);\n}\n\n.loader .circle .dot {\n  position: absolute;\n  transform: translate(-50%, -50%);\n  width: 32rpx;\n  height: 32rpx;\n  border-radius: 50%;\n  background-color: var(--color);\n  animation: dot-keys var(--animation);\n}\n\n.loader .circle .outline {\n  position: absolute;\n  transform: translate(-50%, -50%);\n  width: 40rpx;\n  height: 40rpx;\n  border-radius: 50%;\n  animation: outline-keys var(--animation);\n}\n\n.circle:nth-child(2) {\n  animation-delay: 0.3s;\n}\n\n.circle:nth-child(3) {\n  animation-delay: 0.6s;\n}\n\n.circle:nth-child(4) {\n  animation-delay: 0.9s;\n}\n\n.circle:nth-child(5) {\n  animation-delay: 1.2s;\n}\n\n.circle:nth-child(2) .dot {\n  animation-delay: 0.3s;\n}\n\n.circle:nth-child(3) .dot {\n  animation-delay: 0.6s;\n}\n\n.circle:nth-child(4) .dot {\n  animation-delay: 0.9s;\n}\n\n.circle:nth-child(5) .dot {\n  animation-delay: 1.2s;\n}\n\n.circle:nth-child(1) .outline {\n  animation-delay: 0.9s;\n}\n\n.circle:nth-child(2) .outline {\n  animation-delay: 1.2s;\n}\n\n.circle:nth-child(3) .outline {\n  animation-delay: 1.5s;\n}\n\n.circle:nth-child(4) .outline {\n  animation-delay: 1.8s;\n}\n\n.circle:nth-child(5) .outline {\n  animation-delay: 2.1s;\n}\n\n@keyframes circle-keys {\n  0% {\n    transform: scale(1);\n    opacity: 1;\n  }\n\n  50% {\n    transform: scale(1.5);\n    opacity: 0.5;\n  }\n\n  100% {\n    transform: scale(1);\n    opacity: 1;\n  }\n}\n\n@keyframes dot-keys {\n  0% {\n    transform: scale(1);\n  }\n\n  50% {\n    transform: scale(0);\n  }\n\n  100% {\n    transform: scale(1);\n  }\n}\n\n@keyframes outline-keys {\n  0% {\n    transform: scale(0);\n    outline: solid 40rpx var(--color);\n    outline-offset: 0;\n    opacity: 1;\n  }\n\n  100% {\n    transform: scale(1);\n    outline: solid 0 transparent;\n    outline-offset: 40rpx;\n    opacity: 0;\n  }\n}\n",
    "component_name": "GalaxyBrightFirefox37"
  },
  "platforms": {
    "h5": true,
    "mp-weixin": true,
    "mp-alipay": true,
    "mp-baidu": true,
    "mp-toutiao": true,
    "app-plus": true
  },
  "props": [
    {
      "name": "disabled",
      "type": "Boolean",
      "default": false,
      "required": false,
      "description": "是否禁用"
    }
  ],
  "events": [],
  "slots": [
    {
      "name": "",
      "description": "",
      "props": []
    }
  ],
  "compatibility": {
    "h5": {
      "supported": true,
      "issues": [],
      "alternatives": []
    },
    "mp-weixin": {
      "supported": true,
      "issues": [],
      "alternatives": []
    },
    "mp-alipay": {
      "supported": true,
      "issues": [],
      "alternatives": []
    },
    "app-plus": {
      "supported": true,
      "issues": [],
      "alternatives": []
    }
  },
  "performance": {
    "complexity": "high",
    "bundle_size": 2661,
    "render_cost": "high",
    "memory_usage": "high"
  },
  "dependencies": [],
  "examples": [
    {
      "title": "",
      "description": "",
      "code": ""
    }
  ],
  "created_at": "2025-07-31T07:55:39.638Z",
  "updated_at": "2025-07-31T07:55:39.638Z"
}