{
  "id": "vinodjangid07_dangerous-pug-9",
  "name": "dangerous-pug-9",
  "category": "buttons",
  "author": "vinodjangid07",
  "description": "dangerous-pug-9 组件 (button, next, hover effect, click effect, animation, interactive)",
  "tags": [
    "button",
    "next",
    "hover effect",
    "click effect",
    "animation",
    "interactive"
  ],
  "original": {
    "html": "<button class=\"button\">\n  <span class=\"text\">Next</span>\n  <svg class=\"arrow\" viewBox=\"0 0 448 512\" height=\"1em\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l306.7 0L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z\"></path></svg>\n</button>",
    "css": "/* From Uiverse.io by vinodjangid07 - Tags: button, next, hover effect, click effect */\n.button {\n  width: 120px;\n  height: 30px;\n  display: flex;\n  align-items: center;\n  justify-content: flex-start;\n  gap: 12px;\n  cursor: pointer;\n  border: 3px solid rgb(255, 239, 94);\n  background-color: rgb(255, 239, 94);\n  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.137);\n}\n\n.text {\n  width: 70%;\n  height: 100%;\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  background-color: rgb(27, 27, 27);\n  color: white;\n}\n\n.arrow path {\n  fill: rgb(19, 19, 19);\n}\n\n.button:hover .arrow {\n  animation: slide-in-left 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;\n}\n\n@keyframes slide-in-left {\n  0% {\n    transform: translateX(-8px);\n    opacity: 0;\n  }\n\n  100% {\n    transform: translateX(0px);\n    opacity: 1;\n  }\n}\n\n.button:active {\n  transform: scale(0.97);\n}",
    "file_path": "/mnt/persist/workspace/Buttons/vinodjangid07_dangerous-pug-9.html"
  },
  "uniapp": {
    "template": "<button class=\"button\"></button>\n  <text class=\"text\">Next</text>\n  <view class=\"arrow\" viewBox=\"0 0 448 512\" height=\"1em\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l306.7 0L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z\"></path></view>\n</button>",
    "script": "export default {\n  name: 'GalaxyDangerousPug9',\n  props: {\n    // 根据组件类型动态生成props\n  },\n  data() {\n    return {\n      // 组件状态\n    };\n  },\n  methods: {\n    // 组件方法\n  }\n}",
    "style": "\n/* From Uiverse.io by vinodjangid07 - Tags: button, next, hover effect, click effect */\n.button {\n  width: 240rpx;\n  height: 60rpx;\n  display: flex;\n  align-items: center;\n  justify-content: flex-start;\n  gap: 24rpx;\n  /* #ifdef H5 */\n  cursor: pointer;\n  /* #endif */\n  border: 6rpx solid rgb(255, 239, 94);\n  background-color: rgb(255, 239, 94);\n  /* #ifdef H5 */\n  /* #ifdef H5 */\n  box-shadow: 4rpx 4rpx 20rpx rgba(0, 0, 0, 0.137);\n  /* #endif */\n  /* #ifdef MP */\n  border: 1rpx solid rgba(0,0,0,0.1);\n  /* #endif */\n  /* #endif */\n}\n\n.text {\n  width: 70%;\n  height: 100%;\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  background-color: rgb(27, 27, 27);\n  color: white;\n}\n\n.arrow path {\n  fill: rgb(19, 19, 19);\n}\n\n.button:hover .arrow {\n  animation: slide-in-left 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;\n}\n\n@keyframes slide-in-left {\n  0% {\n    transform: translateX(-16rpx);\n    opacity: 0;\n  }\n\n  100% {\n    transform: translateX(0rpx);\n    opacity: 1;\n  }\n}\n\n.button:active {\n  transform: scale(0.97);\n}\n",
    "component_name": "GalaxyDangerousPug9"
  },
  "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": 1274,
    "render_cost": "medium",
    "memory_usage": "medium"
  },
  "dependencies": [],
  "examples": [
    {
      "title": "",
      "description": "",
      "code": ""
    }
  ],
  "created_at": "2025-07-31T07:55:38.097Z",
  "updated_at": "2025-07-31T07:55:38.097Z"
}