发布于 2016-12-16 23:58:04 | 90 次阅读 | 评论: 0 | 来源: 网友投递
MooTools JavaScript WEB应用框架
MooTools是一个简洁,模块化,面向对象的开源JavaScript web应用框架。
它为web开发者提供了一个跨浏览器js解决方案。在处理js、css、html时候。
它提供了一个比普通js更面向对象的documentAPI。
var periodicalFunction = function(){
alert('again');
}
window.addEvent('domready', function() {
// 结尾的数字决定了这个函数触发的时间间隔,以毫秒为单位
var periodicalFunctionVar = periodicalFunction.periodical(100);
});
window.addEvent('domready', function() {
// 给一个变量赋值
var passedVar = $('elementID');
// 现在periodicalFunction就可以使用"this"来引用"passedVar"
var periodicalFunctionVar = periodicalFunction.periodical(100, passedVar);
});
<button id="timer_start">start</button>
<button id="timer_stop">pause</button>
<button id="timer_reset">reset</button>
<div id="timper_bar_wrap">
<div id="timer_bar"> </div>
</div>
<div id="timer_display">0</div>
var timerFunction = function(){
// 每次当这个函数被调用时
// 变量currentTime就会增加一
// 同时要注意一下"this.counter"的使用
// "this"是hash
// 而"counter"是key
var currentTime = this.counter++;
// 这里我们改变显示时间的div里面的内容
$('timer_display').set('text', currentTime);
// 这里改变样式表的width属性,可以轻松地创建一个时间进度条
$('timer_bar').setStyle('width', currentTime);
}
window.addEvent('domready', function() {
// 这是一个简单的hash对象
// 只有一个键值对(key/value pair)
var currentCounter = new Hash({counter: 0});
// 我们初始化我们的定时器并传入和绑定hash变量
var simpleTimer = timerFunction.periodical(100, currentCounter);
// 由于我们不想在onload的时候就启动定时器
// 因此我们在这里要停止这个定时器
$clear(simpleTimer);
// 在开始按钮上添加一个事件
// 在这里再次启动这个定时器
$('timer_start').addEvent("click", function(){
simpleTimer = timerFunction.periodical(100, currentCounter);
});
// 在这里清除定时器
// 并是时间条闪亮一下
$('timer_stop').addEvent("click", function(){
$clear(simpleTimer);
$('timer_bar').highlight('#EFE02F');
});
$('timer_reset').addEvent("click", function(){
// 重置按钮首先清除这个定时器
$clear(simpleTimer);
// 然后把counter设为0
// 这个稍后再详细讲
currentCounter .set('counter', 0);
//
$('timer_display').set('text', currentCounter.counter);
$('timer_bar').setStyle('width', 0);
});
});
var hashVar = new Hash({
'firstKey': 0,
'secondKey': 0
});
// 还是使用上面的hash
// 这里我们设置firstKay的值为200
hashVar.set('firstKey', 200);
// 这里我们获取firstKey的值,现在是200
var hashValue = hashVar.get('firstKey');
var hashValue = hashVar.firstKey;
// 上面的和下面的一样
var hashValue = hashVar.get('firstKey');
// 这是一个普通的对象
// 它包含键值对(key/value pairs)
// 但是没有hash的功能
var genericObject = {
'third': 450,
'fourth': 89
};
//现在hashVar包含了genericObject中的所有键值对
hashVar.extend(genericObject);
hashVar.erase('firstKey');
hashVar.each(function(value, key) {
// 这将为hash中的每一个键值对弹出一个对话框
alert(key + ":" + value);
});
我们目前为止要讲的关于hash的内容就这么多了。由于这个系列教程中我们会更深入的学习,在以后我们将找一些机会来讲有关hash的更多功能。但是现在,如果你是初学者,我们只是希望你能对hash有一个基本的概念。很快我们就要讲解类(class)了,那个时候所有的东西才会串连起来。同时,阅读一下文档中有关hash的这一节。
包括MooTools 1.2的核心库,上面的示例,一个外部的JavaScript文件,一个简单的HTML页面和一个CSS文件。