在 javascript 中创建配置窗格
我正在寻找为油脂猴插件创建一个通用配置窗格。我想知道是否存在一个库可以使这变得更容易?
我正在寻找一些工具,你可以给它一些名称/值对,它会生成一个漂亮的用户界面。
我想我在某个地方见过这个,但忘记了搜索词。
I am looking to create a generic config pane for a grease monkey plugin. I was wondering if there exists a lib to make this easier?
I am looking for some tool where you might give it some name/value pairs and it will generate a nice looking UI.
I think ive seen this somewhere but forgot the search terms.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许您可以使用 jQuery UI lib 来构建窗格。 Lib 充满了易于使用的可视化组件。
Maybe you can use jQuery UI lib for building pane. Lib is full of easy-to-use visual components.
考虑到您想要的似乎很简单,为什么不手写一些 HTML 和 CSS 并将其放在页面上呢?显示简单的配置窗口非常容易,并且只需很少的努力即可使其看起来美观。
如果你想让它看起来漂亮,jQuery UI。您也可以尝试卡布奇诺,但是您分层的库越多,它就会变得越笨拙。
对于简单的布局,只需使用表格即可。禁忌,是的,但有效......而且它只是一个配置屏幕。
Given how simple you seem to want it, why not just hand-write some HTML and CSS and throw that up on the page? It's very easy to show a simple configuration window and takes very little effort to make it look presentable.
If you want it to look nice, jQuery UI. You could also try Cappuccino, but the more library you layer on, the clumsier it'll get.
For a simple layout, just use tables. Taboo, yes, but effective... and it IS just a configuration screen.