jQuery w2ui是什么?
w2ui是基于Jquery的UI库,包含常用UI组件,如:布局、表格、树形、Tabs、工具条、弹出菜单、表单等等。
采用Html5 + CSS3编写,可以支持常用的浏览器,如:Chrome、FireFox7+、Safari 5+和IE 9+等。
在线演示:http://w2ui.com/web/home
w2ui库是一套 jQuery插件。该w2layout对象允许您创建拉伸可调整大小的高达6的面板布局。面板上,左,右,和主,预览,底。您不必创建并初始化所有6个板,但只有你的应用需要的面板。
w2ui库是一体化解决方案。它包括了所有最常见的UI部件:布局,网格,侧边栏,标签,工具栏,弹出窗口,控件和窗体的字段。你不需要投入一集不匹配的插件来实现你的目标。 举个简单的布局例子
$(function () { var pstyle = 'background-color: #F5F6F7; border: 1px solid #dfdfdf; padding: 5px;'; $('#layout').w2layout({ name: 'layout', panels: [ { type: 'top', size: 50, resizable: true, style: pstyle, content: 'top' }, { type: 'left', size: 200, resizable: true, style: pstyle, content: 'left' }, { type: 'main', style: pstyle, content: 'main' }, { type: 'preview', size: '50#39;, resizable: true, style: pstyle, content: 'preview' }, { type: 'right', size: 200, resizable: true, style: pstyle, content: 'right' }, { type: 'bottom', size: 50, resizable: true, style: pstyle, content: 'bottom' } ] }); });
更多web前端开发知识,请查阅 HTML中文网 !!
以上就是jQuery w2ui是什么?的详细内容,更多请关注易知道|edz.cc其它相关文章!