{
  "id": "KhaledMatalkah_lucky-dragon-53",
  "name": "lucky-dragon-53",
  "category": "buttons",
  "author": "KhaledMatalkah",
  "description": "lucky-dragon-53 组件 (button, hover, box-shadow, animation, interactive)",
  "tags": [
    "button",
    "hover",
    "box-shadow",
    "animation",
    "interactive"
  ],
  "original": {
    "html": "<button class=\"button\">\n  Button\n</button>",
    "css": "/* From Uiverse.io by KhaledMatalkah - Tags: button, hover, box-shadow */\n.button {\n  display: inline-block;\n  padding: 10px 20px;\n  font-size: 16px;\n  font-weight: bold;\n  text-align: center;\n  text-decoration: none;\n  color: #ffffff;\n  background-color: #000000;\n  border: none;\n  border-radius: 50px;\n  transition: all 0.3s ease-in-out;\n  cursor: pointer;\n  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);\n  position: relative;\n  z-index: 1;\n}\n\n.button:hover {\n  background-color: #111111;\n  transform: translateY(-2px);\n  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);\n}\n\n.button:focus {\n  outline: none;\n  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.3);\n}\n\n.button:active {\n  transform: translateY(1px);\n  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);\n}\n\n.button:disabled {\n  opacity: 0.6;\n  cursor: not-allowed;\n}\n\n.button::before {\n  content: \"\";\n  position: absolute;\n  top: -5px;\n  left: -5px;\n  right: -5px;\n  bottom: -5px;\n  background-color: rgba(255, 255, 255, 0.1);\n  border-radius: 50px;\n  z-index: -1;\n  transition: all 0.3s ease-in-out;\n}\n\n.button:hover::before {\n  top: -8px;\n  left: -8px;\n  right: -8px;\n  bottom: -8px;\n}",
    "file_path": "/mnt/persist/workspace/Buttons/KhaledMatalkah_lucky-dragon-53.html"
  },
  "uniapp": {
    "template": "<button class=\"button\"></button>\n  Button\n</button>",
    "script": "export default {\n  name: 'GalaxyLuckyDragon53',\n  props: {\n    // 根据组件类型动态生成props\n  },\n  data() {\n    return {\n      // 组件状态\n    };\n  },\n  methods: {\n    // 组件方法\n  }\n}",
    "style": "\n/* From Uiverse.io by KhaledMatalkah - Tags: button, hover, box-shadow */\n.button {\n  display: inline-block;\n  padding: 20rpx 40rpx;\n  font-size: 32rpx;\n  font-weight: bold;\n  text-align: center;\n  text-decoration: none;\n  color: #ffffff;\n  background-color: #000000;\n  border: none;\n  border-radius: 100rpx;\n  transition: all 0.3s ease-in-out;\n  /* #ifdef H5 */\n  cursor: pointer;\n  /* #endif */\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  position: relative;\n  z-index: 1;\n}\n\n.button:hover {\n  background-color: #111111;\n  transform: translateY(-4rpx);\n  /* #ifdef H5 */\n  /* #ifdef H5 */\n  box-shadow: 0 12rpx 20rpx rgba(0, 0, 0, 0.2);\n  /* #endif */\n  /* #ifdef MP */\n  border: 1rpx solid rgba(0,0,0,0.1);\n  /* #endif */\n  /* #endif */\n}\n\n.button:focus {\n  outline: none;\n  /* #ifdef H5 */\n  /* #ifdef H5 */\n  box-shadow: 0 0 0 6rpx rgba(255, 0, 0, 0.3);\n  /* #endif */\n  /* #ifdef MP */\n  border: 1rpx solid rgba(0,0,0,0.1);\n  /* #endif */\n  /* #endif */\n}\n\n.button:active {\n  transform: translateY(2rpx);\n  /* #ifdef H5 */\n  /* #ifdef H5 */\n  box-shadow: 0 4rpx 8rpx 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.button:disabled {\n  opacity: 0.6;\n  /* #ifdef H5 */\n  cursor: not-allowed;\n  /* #endif */\n}\n\n.button::before {\n  content: \"\";\n  position: absolute;\n  top: -10rpx;\n  left: -10rpx;\n  right: -10rpx;\n  bottom: -10rpx;\n  background-color: rgba(255, 255, 255, 0.1);\n  border-radius: 100rpx;\n  z-index: -1;\n  transition: all 0.3s ease-in-out;\n}\n\n.button:hover::before {\n  top: -16rpx;\n  left: -16rpx;\n  right: -16rpx;\n  bottom: -16rpx;\n}\n\n\n",
    "component_name": "GalaxyLuckyDragon53"
  },
  "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": "是否禁用"
    },
    {
      "name": "text",
      "type": "String",
      "default": "按钮",
      "required": false,
      "description": "按钮文字"
    },
    {
      "name": "type",
      "type": "String",
      "default": "primary",
      "required": false,
      "description": "按钮类型"
    }
  ],
  "events": [
    {
      "name": "click",
      "description": "点击事件",
      "parameters": [
        "event"
      ]
    }
  ],
  "slots": [
    {
      "name": "",
      "description": "",
      "props": []
    }
  ],
  "compatibility": {
    "h5": {
      "supported": true,
      "issues": [],
      "alternatives": []
    },
    "mp-weixin": {
      "supported": true,
      "issues": [
        "不支持 box-shadow 属性",
        "不支持 cursor 属性"
      ],
      "alternatives": []
    },
    "mp-alipay": {
      "supported": true,
      "issues": [
        "不支持 box-shadow 属性",
        "不支持 cursor 属性"
      ],
      "alternatives": []
    },
    "app-plus": {
      "supported": true,
      "issues": [],
      "alternatives": []
    }
  },
  "performance": {
    "complexity": "medium",
    "bundle_size": 1170,
    "render_cost": "medium",
    "memory_usage": "medium"
  },
  "dependencies": [],
  "examples": [
    {
      "title": "",
      "description": "",
      "code": ""
    }
  ],
  "created_at": "2025-07-31T07:55:33.701Z",
  "updated_at": "2025-07-31T07:55:33.701Z"
}