Coder Social home page Coder Social logo

stone-ui's Introduction

Stone UI 简介.

Stone 是一款jQuery的UI插件集合,使用插件式的开发模式,以简单为原则的设计,简单而又强大。 我们致力于快速打造Web前端界面解决方案。 框架采用面向对象的**编码,具有微核心、易扩展的特点,且提供丰富的插件,每个插件尽量独立,并可依赖拓展。

<!-- 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>

HOME: http://nbless.com DEMO: http://nbless.com/stone-master/demos/

stone-ui's People

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.