UKI Simple UI Kit for complex web apps (0.3.8)
Links
- Mac Mail.app web clone demo new
- Play with simple twitter widget code
- Google wave layout in 100 lines of uki code
Uki is a fast and simple JavaScript user interface toolkit for desktop-like web applications.
It comes with a rich view-component library ranging from
Slider to
List and
SplitPane.
Download: compressed (34KB, gzip, compiled) development (258KB, with comments)
Install development tools uki-tools new
Code ukiuki({
view: "Button", text: "Hello world!",
rect: "120 80 180 24"
}).attachTo( document.getElementById("test") );
uki("Button[text^=Hello]").click(
function() { alert(this.text()); }
);
|
#test
|