{
  "id": "PriyanshuGupta28_wise-mule-92",
  "name": "wise-mule-92",
  "category": "buttons",
  "author": "PriyanshuGupta28",
  "description": "wise-mule-92 组件 (button, animation, interactive)",
  "tags": [
    "button",
    "animation",
    "interactive"
  ],
  "original": {
    "html": "<button class=\"btn\"><span>鬼滅の刃</span></button>",
    "css": "/* From Uiverse.io by PriyanshuGupta28 - Tags: button */\n.btn {\n  display: inline-block;\n  padding: 10px 20px;\n  border: none;\n  background-color: #f44336;\n  color: #fff;\n  font-size: 20px;\n  font-weight: bold;\n  text-transform: uppercase;\n  letter-spacing: 0.1em;\n  cursor: pointer;\n  position: relative;\n  overflow: hidden;\n  transition: all 0.3s ease-in-out;\n}\n\n.btn::before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  opacity: 0.2;\n  z-index: -1;\n}\n\n.btn:hover {\n  background-color: #fff;\n  color: #f44336;\n  text-shadow: 0 0 5px #f44336;\n  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;\n}\n\n.btn span {\n  display: inline-block;\n  position: relative;\n  transition: all 0.3s ease-in-out;\n}\n\n.btn:hover span {\n  transform: rotate(-10deg) scale(1.1);\n}",
    "file_path": "/mnt/persist/workspace/Buttons/PriyanshuGupta28_wise-mule-92.html"
  },
  "uniapp": {
    "template": "<button class=\"btn\"></button><text>鬼滅の刃</text></button>",
    "script": "export default {\n  name: 'GalaxyWiseMule92',\n  props: {\n    // 根据组件类型动态生成props\n  },\n  data() {\n    return {\n      // 组件状态\n    };\n  },\n  methods: {\n    // 组件方法\n  }\n}",
    "style": "\n/* From Uiverse.io by PriyanshuGupta28 - Tags: button */\n.btn {\n  display: inline-block;\n  padding: 20rpx 40rpx;\n  border: none;\n  background-color: #f44336;\n  color: #fff;\n  font-size: 40rpx;\n  font-weight: bold;\n  text-transform: uppercase;\n  letter-spacing: 0.1em;\n  /* #ifdef H5 */\n  cursor: pointer;\n  /* #endif */\n  position: relative;\n  overflow: hidden;\n  transition: all 0.3s ease-in-out;\n}\n\n.btn::before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  opacity: 0.2;\n  z-index: -1;\n}\n\n.btn:hover {\n  background-color: #fff;\n  color: #f44336;\n  /* #ifdef H5 */\n  text-shadow: 0 0 10rpx #f44336;\n  /* #endif */\n  /* #ifdef H5 */\n  /* #ifdef H5 */\n  box-shadow: rgba(0, 0, 0, 0.17) 0rpx -46rpx 50rpx 0rpx inset, rgba(0, 0, 0, 0.15) 0rpx -72rpx 60rpx 0rpx inset, rgba(0, 0, 0, 0.1) 0rpx -158rpx 80rpx 0rpx inset, rgba(0, 0, 0, 0.06) 0rpx 4rpx 2rpx, rgba(0, 0, 0, 0.09) 0rpx 8rpx 4rpx, rgba(0, 0, 0, 0.09) 0rpx 16rpx 8rpx, rgba(0, 0, 0, 0.09) 0rpx 32rpx 16rpx, rgba(0, 0, 0, 0.09) 0rpx 64rpx 32rpx;\n  /* #endif */\n  /* #ifdef MP */\n  border: 1rpx solid rgba(0,0,0,0.1);\n  /* #endif */\n  /* #endif */\n}\n\n.btn span {\n  display: inline-block;\n  position: relative;\n  transition: all 0.3s ease-in-out;\n}\n\n.btn:hover span {\n  transform: rotate(-10deg) scale(1.1);\n}\n\n",
    "component_name": "GalaxyWiseMule92"
  },
  "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 属性",
        "不支持 text-shadow 属性",
        "不支持 cursor 属性"
      ],
      "alternatives": []
    },
    "mp-alipay": {
      "supported": true,
      "issues": [
        "不支持 box-shadow 属性",
        "不支持 text-shadow 属性",
        "不支持 cursor 属性"
      ],
      "alternatives": []
    },
    "app-plus": {
      "supported": true,
      "issues": [],
      "alternatives": []
    }
  },
  "performance": {
    "complexity": "medium",
    "bundle_size": 1123,
    "render_cost": "medium",
    "memory_usage": "medium"
  },
  "dependencies": [],
  "examples": [
    {
      "title": "",
      "description": "",
      "code": ""
    }
  ],
  "created_at": "2025-07-31T07:55:34.366Z",
  "updated_at": "2025-07-31T07:55:34.366Z"
}