{
  "id": "pravusagar_tidy-zebra-16",
  "name": "tidy-zebra-16",
  "category": "loaders",
  "author": "pravusagar",
  "description": "tidy-zebra-16 组件 (loader, smooth, dark, light, neon, game, circle, text animation, animation, gradient)",
  "tags": [
    "loader",
    "smooth",
    "dark",
    "light",
    "neon",
    "game",
    "circle",
    "text animation",
    "animation",
    "gradient"
  ],
  "original": {
    "html": "<div class=\"container\">\n  <div class=\"loader-container\">\n    <div class=\"loader\"></div>\n    <div class=\"loading-text\">Loading...</div>\n  </div>\n</div>",
    "css": "/* From Uiverse.io by pravusagar  - Tags: loader, smooth, dark, light, neon, game, circle, text animation */\n.container {\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  margin: auto;\n  padding: 0.6em;\n  border-radius: 10px;\n  background: linear-gradient(\n    90deg,\n    #3498db,\n    #2ecc71,\n    #e74c3c,\n    #f39c12,\n    #3498db\n  );\n  background-size: 900% 900%;\n  animation: changeGradient 10s ease infinite; /* 10s duration, ease timing function, infinite loop */\n  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;\n}\n\n@keyframes changeGradient {\n  0% {\n    background-position: 0% 50%;\n  }\n  50% {\n    background-position: 100% 50%;\n  }\n  100% {\n    background-position: 0% 50%;\n  }\n}\n.loader-container {\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  flex-direction: column;\n  text-align: center;\n  background-color: #ffffff87;\n  padding: 20px;\n  border-radius: 10px;\n  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);\n}\n\n.loader {\n  border: 8px solid #ffffff;\n  border-top: 8px solid #0000005f;\n  border-radius: 50%;\n  width: 50px;\n  height: 50px;\n  animation: spin 1s linear infinite;\n  margin-bottom: 20px;\n}\n\n.loading-text {\n  font-size: 20px;\n  color: #121212;\n}\n\n@keyframes spin {\n  0% {\n    transform: rotate(0deg);\n  }\n  100% {\n    transform: rotate(360deg);\n  }\n}",
    "file_path": "/mnt/persist/workspace/loaders/pravusagar_tidy-zebra-16.html"
  },
  "uniapp": {
    "template": "<view class=\"container\"></view>\n  <view class=\"loader-container\"></view>\n    <view class=\"loader\"></view>\n    <view class=\"loading-text\">Loading...</view>\n  </div>\n</div>",
    "script": "export default {\n  name: 'GalaxyTidyZebra16',\n  props: {\n    // 根据组件类型动态生成props\n  },\n  data() {\n    return {\n      // 组件状态\n    };\n  },\n  methods: {\n    // 组件方法\n  }\n}",
    "style": "\n/* From Uiverse.io by pravusagar  - Tags: loader, smooth, dark, light, neon, game, circle, text animation */\n.container {\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  margin: auto;\n  padding: 0.6em;\n  border-radius: 20rpx;\n  background: linear-gradient(\n    90deg,\n    #3498db,\n    #2ecc71,\n    #e74c3c,\n    #f39c12,\n    #3498db\n  );\n  background-size: 900% 900%;\n  animation: changeGradient 10s ease infinite; /* 10s duration, ease timing function, infinite loop */\n  /* #ifdef H5 */\n  /* #ifdef H5 */\n  box-shadow: rgba(0, 0, 0, 0.1) 0rpx 8rpx 24rpx;\n  /* #endif */\n  /* #ifdef MP */\n  border: 1rpx solid rgba(0,0,0,0.1);\n  /* #endif */\n  /* #endif */\n}\n\n@keyframes changeGradient {\n  0% {\n    background-position: 0% 50%;\n  }\n  50% {\n    background-position: 100% 50%;\n  }\n  100% {\n    background-position: 0% 50%;\n  }\n}\n.loader-container {\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  flex-direction: column;\n  text-align: center;\n  background-color: #ffffff87;\n  padding: 40rpx;\n  border-radius: 20rpx;\n  /* #ifdef H5 */\n  /* #ifdef H5 */\n  box-shadow: 0 8rpx 16rpx rgba(0, 0, 0, 0.1);\n  /* #endif */\n  /* #ifdef MP */\n  border: 1rpx solid rgba(0,0,0,0.1);\n  /* #endif */\n  /* #endif */\n}\n\n.loader {\n  border: 16rpx solid #ffffff;\n  border-top: 16rpx solid #0000005f;\n  border-radius: 50%;\n  width: 100rpx;\n  height: 100rpx;\n  animation: spin 1s linear infinite;\n  margin-bottom: 40rpx;\n}\n\n.loading-text {\n  font-size: 40rpx;\n  color: #121212;\n}\n\n@keyframes spin {\n  0% {\n    transform: rotate(0deg);\n  }\n  100% {\n    transform: rotate(360deg);\n  }\n}\n\n",
    "component_name": "GalaxyTidyZebra16"
  },
  "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": [
        "不支持 box-shadow 属性"
      ],
      "alternatives": []
    },
    "mp-alipay": {
      "supported": true,
      "issues": [
        "不支持 box-shadow 属性"
      ],
      "alternatives": []
    },
    "app-plus": {
      "supported": true,
      "issues": [],
      "alternatives": []
    }
  },
  "performance": {
    "complexity": "medium",
    "bundle_size": 1470,
    "render_cost": "medium",
    "memory_usage": "medium"
  },
  "dependencies": [],
  "examples": [
    {
      "title": "",
      "description": "",
      "code": ""
    }
  ],
  "created_at": "2025-07-31T07:55:42.544Z",
  "updated_at": "2025-07-31T07:55:42.544Z"
}