{
  "id": "shah1345_spicy-liger-32",
  "name": "spicy-liger-32",
  "category": "buttons",
  "author": "shah1345",
  "description": "spicy-liger-32 组件 (button, animation, interactive)",
  "tags": [
    "button",
    "animation",
    "interactive"
  ],
  "original": {
    "html": "<button class=\"button2\">\n    Hover me\n</button>",
    "css": "/* From Uiverse.io by shah1345 - Tags: button */\n.button2 {\n  display: inline-block;\n  transition: all 0.2s ease-in;\n  position: relative;\n  overflow: hidden;\n  z-index: 1;\n  color: #090909;\n  padding: 0.7em 1.7em;\n  font-size: 18px;\n  border-radius: 0.5em;\n  background: #e8e8e8;\n  border: 1px solid #e8e8e8;\n  box-shadow: 6px 6px 12px #c5c5c5,\n             -6px -6px 12px #ffffff;\n}\n\n.button2:active {\n  color: #666;\n  box-shadow: inset 4px 4px 12px #c5c5c5,\n             inset -4px -4px 12px #ffffff;\n}\n\n.button2:before {\n  content: \"\";\n  position: absolute;\n  left: 50%;\n  transform: translateX(-50%) scaleY(1) scaleX(1.25);\n  top: 100%;\n  width: 140%;\n  height: 180%;\n  background-color: rgba(0, 0, 0, 0.05);\n  border-radius: 50%;\n  display: block;\n  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);\n  z-index: -1;\n}\n\n.button2:after {\n  content: \"\";\n  position: absolute;\n  left: 55%;\n  transform: translateX(-50%) scaleY(1) scaleX(1.45);\n  top: 180%;\n  width: 160%;\n  height: 190%;\n  background-color: #009087;\n  border-radius: 50%;\n  display: block;\n  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);\n  z-index: -1;\n}\n\n.button2:hover {\n  color: #ffffff;\n  border: 1px solid #009087;\n}\n\n.button2:hover:before {\n  top: -35%;\n  background-color: #009087;\n  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);\n}\n\n.button2:hover:after {\n  top: -45%;\n  background-color: #009087;\n  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);\n}",
    "file_path": "/mnt/persist/workspace/Buttons/shah1345_spicy-liger-32.html"
  },
  "uniapp": {
    "template": "<button class=\"button2\"></button>\n    Hover me\n</button>",
    "script": "export default {\n  name: 'GalaxySpicyLiger32',\n  props: {\n    // 根据组件类型动态生成props\n  },\n  data() {\n    return {\n      // 组件状态\n    };\n  },\n  methods: {\n    // 组件方法\n  }\n}",
    "style": "\n/* From Uiverse.io by shah1345 - Tags: button */\n.button2 {\n  display: inline-block;\n  transition: all 0.2s ease-in;\n  position: relative;\n  overflow: hidden;\n  z-index: 1;\n  color: #090909;\n  padding: 0.7em 1.7em;\n  font-size: 36rpx;\n  border-radius: 0.5em;\n  background: #e8e8e8;\n  border: 2rpx solid #e8e8e8;\n  /* #ifdef H5 */\n  /* #ifdef H5 */\n  box-shadow: 12rpx 12rpx 24rpx #c5c5c5,\n             -12rpx -12rpx 24rpx #ffffff;\n  /* #endif */\n  /* #ifdef MP */\n  border: 1rpx solid rgba(0,0,0,0.1);\n  /* #endif */\n  /* #endif */\n}\n\n.button2:active {\n  color: #666;\n  /* #ifdef H5 */\n  /* #ifdef H5 */\n  box-shadow: inset 8rpx 8rpx 24rpx #c5c5c5,\n             inset -8rpx -8rpx 24rpx #ffffff;\n  /* #endif */\n  /* #ifdef MP */\n  border: 1rpx solid rgba(0,0,0,0.1);\n  /* #endif */\n  /* #endif */\n}\n\n.button2:before {\n  content: \"\";\n  position: absolute;\n  left: 50%;\n  transform: translateX(-50%) scaleY(1) scaleX(1.25);\n  top: 100%;\n  width: 140%;\n  height: 180%;\n  background-color: rgba(0, 0, 0, 0.05);\n  border-radius: 50%;\n  display: block;\n  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);\n  z-index: -1;\n}\n\n.button2:after {\n  content: \"\";\n  position: absolute;\n  left: 55%;\n  transform: translateX(-50%) scaleY(1) scaleX(1.45);\n  top: 180%;\n  width: 160%;\n  height: 190%;\n  background-color: #009087;\n  border-radius: 50%;\n  display: block;\n  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);\n  z-index: -1;\n}\n\n.button2:hover {\n  color: #ffffff;\n  border: 2rpx solid #009087;\n}\n\n.button2:hover:before {\n  top: -35%;\n  background-color: #009087;\n  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);\n}\n\n.button2:hover:after {\n  top: -45%;\n  background-color: #009087;\n  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);\n}\n\n",
    "component_name": "GalaxySpicyLiger32"
  },
  "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 属性"
      ],
      "alternatives": []
    },
    "mp-alipay": {
      "supported": true,
      "issues": [
        "不支持 box-shadow 属性"
      ],
      "alternatives": []
    },
    "app-plus": {
      "supported": true,
      "issues": [],
      "alternatives": []
    }
  },
  "performance": {
    "complexity": "medium",
    "bundle_size": 1506,
    "render_cost": "medium",
    "memory_usage": "medium"
  },
  "dependencies": [],
  "examples": [
    {
      "title": "",
      "description": "",
      "code": ""
    }
  ],
  "created_at": "2025-07-31T07:55:37.839Z",
  "updated_at": "2025-07-31T07:55:37.839Z"
}