netherjs/nui2

一个由讨厌JS的人制作的JS UI工具包。

维护者

详细信息

github.com/netherjs/nui2

源代码

问题

安装次数: 18

依赖者: 0

建议者: 0

安全性: 0

星标: 0

关注者: 2

分支: 0

公开问题: 0

语言:JavaScript

dev-master 2021-02-05 23:36 UTC

This package is auto-updated.

Last update: 2024-09-06 07:23:31 UTC


README

进行中。

需求

  • jQuery 3.5
  • Bootstrap 4.5
  • Font Awesome 5

测试

$ composer install $ php -S localhost:80 -t www .

使用示例

import Dialog from "./nui/element/dialog.js";
import Button from "./nui/element/button.js";

new Dialog({
	'Modal': true,
	'Title': 'Do you?',
	'Icon': 'fas fa-question-circle',
	'Content': 'Well?',
	'Buttons': [
		new Button({
			'Text':'Probably',
			'Class': 'NUI-Action-Accept'
		})
	]
})
.Register(
	'Accept', 'AppOnAccept',
	function(){ this.Close(); return; }
)