galaxy-uniapp-mcp-server
Version:
Galaxy组件库到UniApp组件转换MCP服务器 - 支持跨平台组件转换、兼容性分析和项目集成
112 lines • 4.37 kB
JSON
{
"id": "rohan-krishu_ugly-frog-36",
"name": "ugly-frog-36",
"category": "buttons",
"author": "rohan-krishu",
"description": "ugly-frog-36 组件 (button, animation, interactive)",
"tags": [
"button",
"animation",
"interactive"
],
"original": {
"html": "<button class=\"my-button\">\n Click me!\n</button>",
"css": "/* From Uiverse.io by rohan-krishu - Tags: button */\n.my-button {\n background-color: blueviolet;\n border: none;\n color: white;\n padding: 10px 20px;\n text-align: center;\n text-decoration: none;\n display: inline-block;\n font-size: 16px;\n border-radius: 5px;\n box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);\n position: relative;\n overflow: hidden;\n}\n\n.my-button:after {\n content: \"\";\n background-color: rgba(255, 255, 255, 0.2);\n position: absolute;\n top: 50%;\n left: 50%;\n width: 5px;\n height: 5px;\n border-radius: 50%;\n transform: translate(-50%, -50%);\n opacity: 0;\n}\n\n.my-button:hover:after {\n animation: ripple_401 1s ease-out;\n}\n\n@keyframes ripple_401 {\n 0% {\n width: 5px;\n height: 5px;\n opacity: 1;\n }\n\n 100% {\n width: 200px;\n height: 200px;\n opacity: 0;\n }\n}",
"file_path": "/mnt/persist/workspace/Buttons/rohan-krishu_ugly-frog-36.html"
},
"uniapp": {
"template": "<button class=\"my-button\"></button>\n Click me!\n</button>",
"script": "export default {\n name: 'GalaxyUglyFrog36',\n props: {\n // 根据组件类型动态生成props\n },\n data() {\n return {\n // 组件状态\n };\n },\n methods: {\n // 组件方法\n }\n}",
"style": "\n/* From Uiverse.io by rohan-krishu - Tags: button */\n.my-button {\n background-color: blueviolet;\n border: none;\n color: white;\n padding: 20rpx 40rpx;\n text-align: center;\n text-decoration: none;\n display: inline-block;\n font-size: 32rpx;\n border-radius: 10rpx;\n /* #ifdef H5 */\n /* #ifdef H5 */\n box-shadow: 0rpx 4rpx 4rpx rgba(0, 0, 0, 0.25);\n /* #endif */\n /* #ifdef MP */\n border: 1rpx solid rgba(0,0,0,0.1);\n /* #endif */\n /* #endif */\n position: relative;\n overflow: hidden;\n}\n\n.my-button:after {\n content: \"\";\n background-color: rgba(255, 255, 255, 0.2);\n position: absolute;\n top: 50%;\n left: 50%;\n width: 10rpx;\n height: 10rpx;\n border-radius: 50%;\n transform: translate(-50%, -50%);\n opacity: 0;\n}\n\n.my-button:hover:after {\n animation: ripple_401 1s ease-out;\n}\n\n@keyframes ripple_401 {\n 0% {\n width: 10rpx;\n height: 10rpx;\n opacity: 1;\n }\n\n 100% {\n width: 400rpx;\n height: 400rpx;\n opacity: 0;\n }\n}\n\n",
"component_name": "GalaxyUglyFrog36"
},
"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": 859,
"render_cost": "medium",
"memory_usage": "medium"
},
"dependencies": [],
"examples": [
{
"title": "",
"description": "",
"code": ""
}
],
"created_at": "2025-07-31T07:55:37.667Z",
"updated_at": "2025-07-31T07:55:37.667Z"
}