微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

jQuery Stone UI jQuery UI 框架

程序名称:jQuery Stone UI

授权协议: GPL

操作系统: 跨平台

开发语言: JavaScript

jQuery Stone UI 介绍

jQuery StoneUI 为网页开发提供了一系列的常用UI组件,包括窗口、对话框、布局等等,提供漂亮的UI界面,基于面向对象方式实现,方便扩展

示例代码

<!-- include core.js -->
<script type="text/javascript" src="../src/js/core.js"></script>
<script>
    var Smile = stone.Class.extend({
        init: function() {
            Log.out('init smile');
            this.name = 'super';
        },
        smile : function(name) {
            Log.out('super\'s smile > ' + name);
        }
    });

    var Hello = Smile.extend({
        init: function(){
            Log.out('init hello');
            Smile.fn.init.call(this);
        },
        say: function(){
            Log.out('hello\'s say');
        }
    });

    var h = new Hello();
    h.say();
    h.smile('h');
</script>

jQuery Stone UI 官网

http://langhsu.github.io/stone-ui/

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐