{
  "id": "Wlidha09_smooth-mouse-48",
  "name": "smooth-mouse-48",
  "category": "buttons",
  "author": "Wlidha09",
  "description": "smooth-mouse-48 组件 (button, animation, interactive)",
  "tags": [
    "button",
    "animation",
    "interactive"
  ],
  "original": {
    "html": "<div class=\"box\">\n  <div class=\"btn\">\n    <button href=\"#\">HOVER ME</button>\n  </div>\n</div>",
    "css": "/* From Uiverse.io by Wlidha09 - Tags: button */\n.box {\n  height: 66.66%;\n  width: 100%;\n  display: flex;\n  justify-content: center;\n  align-items: center;\n}\n\n.btn {\n  line-height: 50px;\n  height: 50px;\n  text-align: center;\n  width: 150px;\n  cursor: pointer;\n  color: #FFF;\n  transition: all 0.3s;\n  position: relative;\n}\n\n.btn button {\n  z-index: 2;\n  display: block;\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  color: #fff;\n  font-size: 17px;\n  border: none;\n  background-color: transparent;\n}\n\n.btn::before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  z-index: 1;\n  transition: all 0.5s;\n  border: 1px solid rgba(255,255,255,0.2);\n  background-color: rgba(255,255,255,0.1);\n}\n\n.btn::after {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  z-index: 1;\n  transition: all 0.5s;\n  border: 1px solid rgba(255,255,255,0.2);\n  background-color: rgba(255,255,255,0.1);\n}\n\n.btn:hover::before {\n  transform: rotate(-45deg);\n  background-color: rgba(255,255,255,0);\n}\n\n.btn:hover::after {\n  transform: rotate(45deg);\n  background-color: rgba(255,255,255,0);\n}",
    "file_path": "/mnt/persist/workspace/Buttons/Wlidha09_smooth-mouse-48.html"
  },
  "uniapp": {
    "template": "<view class=\"box\"></view>\n  <view class=\"btn\"></view>\n    <button href=\"#\"></button>HOVER ME</button>\n  </div>\n</div>",
    "script": "export default {\n  name: 'GalaxySmoothMouse48',\n  props: {\n    // 根据组件类型动态生成props\n  },\n  data() {\n    return {\n      // 组件状态\n    };\n  },\n  methods: {\n    // 组件方法\n  }\n}",
    "style": "\n/* From Uiverse.io by Wlidha09 - Tags: button */\n.box {\n  height: 66.66%;\n  width: 100%;\n  display: flex;\n  justify-content: center;\n  align-items: center;\n}\n\n.btn {\n  line-height: 100rpx;\n  height: 100rpx;\n  text-align: center;\n  width: 300rpx;\n  /* #ifdef H5 */\n  cursor: pointer;\n  /* #endif */\n  color: #FFF;\n  transition: all 0.3s;\n  position: relative;\n}\n\n.btn button {\n  z-index: 2;\n  display: block;\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  color: #fff;\n  font-size: 34rpx;\n  border: none;\n  background-color: transparent;\n}\n\n.btn::before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  z-index: 1;\n  transition: all 0.5s;\n  border: 2rpx solid rgba(255,255,255,0.2);\n  background-color: rgba(255,255,255,0.1);\n}\n\n.btn::after {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  z-index: 1;\n  transition: all 0.5s;\n  border: 2rpx solid rgba(255,255,255,0.2);\n  background-color: rgba(255,255,255,0.1);\n}\n\n.btn:hover::before {\n  transform: rotate(-45deg);\n  background-color: rgba(255,255,255,0);\n}\n\n.btn:hover::after {\n  transform: rotate(45deg);\n  background-color: rgba(255,255,255,0);\n}\n",
    "component_name": "GalaxySmoothMouse48"
  },
  "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": [
        "不支持 cursor 属性"
      ],
      "alternatives": []
    },
    "mp-alipay": {
      "supported": true,
      "issues": [
        "不支持 cursor 属性"
      ],
      "alternatives": []
    },
    "app-plus": {
      "supported": true,
      "issues": [],
      "alternatives": []
    }
  },
  "performance": {
    "complexity": "medium",
    "bundle_size": 1250,
    "render_cost": "medium",
    "memory_usage": "medium"
  },
  "dependencies": [],
  "examples": [
    {
      "title": "",
      "description": "",
      "code": ""
    }
  ],
  "created_at": "2025-07-31T07:55:35.169Z",
  "updated_at": "2025-07-31T07:55:35.169Z"
}