galaxy-uniapp-mcp-server
Version:
Galaxy组件库到UniApp组件转换MCP服务器 - 支持跨平台组件转换、兼容性分析和项目集成
117 lines • 5.79 kB
JSON
{
"id": "cssbuttons-io_funny-dog-69",
"name": "funny-dog-69",
"category": "buttons",
"author": "cssbuttons-io",
"description": "funny-dog-69 组件 (button, glow, animation, interactive)",
"tags": [
"button",
"glow",
"animation",
"interactive"
],
"original": {
"html": "<button> Button\n</button>",
"css": "/* From Uiverse.io by cssbuttons-io - Tags: button, glow */\nbutton {\n --glow-color: rgb(217, 176, 255);\n --glow-spread-color: rgba(191, 123, 255, 0.781);\n --enhanced-glow-color: rgb(231, 206, 255);\n --btn-color: rgb(100, 61, 136);\n border: .25em solid var(--glow-color);\n padding: 1em 3em;\n color: var(--glow-color);\n font-size: 15px;\n font-weight: bold;\n background-color: var(--btn-color);\n border-radius: 1em;\n outline: none;\n box-shadow: 0 0 1em .25em var(--glow-color),\n 0 0 4em 1em var(--glow-spread-color),\n inset 0 0 .75em .25em var(--glow-color);\n text-shadow: 0 0 .5em var(--glow-color);\n position: relative;\n transition: all 0.3s;\n}\n\nbutton::after {\n pointer-events: none;\n content: \"\";\n position: absolute;\n top: 120%;\n left: 0;\n height: 100%;\n width: 100%;\n background-color: var(--glow-spread-color);\n filter: blur(2em);\n opacity: .7;\n transform: perspective(1.5em) rotateX(35deg) scale(1, .6);\n}\n\nbutton:hover {\n color: var(--btn-color);\n background-color: var(--glow-color);\n box-shadow: 0 0 1em .25em var(--glow-color),\n 0 0 4em 2em var(--glow-spread-color),\n inset 0 0 .75em .25em var(--glow-color);\n}\n\nbutton:active {\n box-shadow: 0 0 0.6em .25em var(--glow-color),\n 0 0 2.5em 2em var(--glow-spread-color),\n inset 0 0 .5em .25em var(--glow-color);\n}",
"file_path": "/mnt/persist/workspace/Buttons/cssbuttons-io_funny-dog-69.html"
},
"uniapp": {
"template": "<button></button> Button\n</button>",
"script": "export default {\n name: 'GalaxyFunnyDog69',\n props: {\n // 根据组件类型动态生成props\n },\n data() {\n return {\n // 组件状态\n };\n },\n methods: {\n // 组件方法\n }\n}",
"style": "\n/* From Uiverse.io by cssbuttons-io - Tags: button, glow */\nbutton {\n --glow-color: rgb(217, 176, 255);\n --glow-spread-color: rgba(191, 123, 255, 0.781);\n --enhanced-glow-color: rgb(231, 206, 255);\n --btn-color: rgb(100, 61, 136);\n border: .25em solid var(--glow-color);\n padding: 1em 3em;\n color: var(--glow-color);\n font-size: 30rpx;\n font-weight: bold;\n background-color: var(--btn-color);\n border-radius: 1em;\n outline: none;\n /* #ifdef H5 */\n /* #ifdef H5 */\n box-shadow: 0 0 1em .25em var(--glow-color),\n 0 0 4em 1em var(--glow-spread-color),\n inset 0 0 .75em .25em var(--glow-color);\n /* #endif */\n /* #ifdef MP */\n border: 1rpx solid rgba(0,0,0,0.1);\n /* #endif */\n /* #endif */\n /* #ifdef H5 */\n text-shadow: 0 0 .5em var(--glow-color);\n /* #endif */\n position: relative;\n transition: all 0.3s;\n}\n\nbutton::after {\n pointer-events: none;\n content: \"\";\n position: absolute;\n top: 120%;\n left: 0;\n height: 100%;\n width: 100%;\n background-color: var(--glow-spread-color);\n \n opacity: .7;\n transform: perspective(1.5em) rotateX(35deg) scale(1, .6);\n}\n\nbutton:hover {\n color: var(--btn-color);\n background-color: var(--glow-color);\n /* #ifdef H5 */\n /* #ifdef H5 */\n box-shadow: 0 0 1em .25em var(--glow-color),\n 0 0 4em 2em var(--glow-spread-color),\n inset 0 0 .75em .25em var(--glow-color);\n /* #endif */\n /* #ifdef MP */\n border: 1rpx solid rgba(0,0,0,0.1);\n /* #endif */\n /* #endif */\n}\n\nbutton:active {\n /* #ifdef H5 */\n /* #ifdef H5 */\n box-shadow: 0 0 0.6em .25em var(--glow-color),\n 0 0 2.5em 2em var(--glow-spread-color),\n inset 0 0 .5em .25em var(--glow-color);\n /* #endif */\n /* #ifdef MP */\n border: 1rpx solid rgba(0,0,0,0.1);\n /* #endif */\n /* #endif */\n}\n",
"component_name": "GalaxyFunnyDog69"
},
"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 属性",
"不支持 filter 属性"
],
"alternatives": []
},
"mp-alipay": {
"supported": true,
"issues": [
"不支持 box-shadow 属性",
"不支持 text-shadow 属性",
"不支持 filter 属性"
],
"alternatives": []
},
"app-plus": {
"supported": true,
"issues": [],
"alternatives": []
}
},
"performance": {
"complexity": "medium",
"bundle_size": 1339,
"render_cost": "medium",
"memory_usage": "medium"
},
"dependencies": [],
"examples": [
{
"title": "",
"description": "",
"code": ""
}
],
"created_at": "2025-07-31T07:55:36.193Z",
"updated_at": "2025-07-31T07:55:36.193Z"
}