Mootools 1.2系列教程目录

Posted on October 18, 2008 by Fdream

还是需要一个目录,那就做一个吧!

MooTools是近来仅次于jQuery流行的JavaScript框架,也是我一直比较喜欢的开发框架,最近也正在写MooTools 1.2的注释文档。本来自己也想写一些关于MooTools的教程来着,但是自己很懒,又担心自己写的不好,反倒误了初学者。正好今天无意在国外的论坛上看到这么一个blog,发现有这么一系列的教程,写的很好,很适合初学者和对MooTools完全不熟悉的人,于是决定全部中文化。

另外,此翻译版本已获得原作者支持,在其第一篇文章中已有本文链接。

Mootools相关链接:

分享 |
Categories:
Ajax Web
Tags:
, , ,
Comments:
25 Comments
Views:
32,845 Views

Related Posts

25 Responses to <Mootools 1.2系列教程目录>

  1. lin516 says:

    期待全部完成,佩服一下[biggrin]

  2. aksoft says:

    很不错,一直在找相关的中文资料。呵呵 可以作个链接吗?

  3. Fdream says:

    @lin516:嗯,只要原作者完成我就一定完成!
    @aksoft:可以,你的链接是……?

  4. bluekevin says:

    支持一下,一直很关注啊

  5. aksoft says:

    很好,值得学习

  6. littcai says:

    非常实用,我做了您的链接
    http://mootools.group.javaeye.com/

  7. Fdream says:

    TO littcai:呵呵,谢谢^_^

  8. hyde says:

    一直等待更新…[lol]

  9. Fdream says:

    好,决定年前把最后一篇也更新了~

  10. Ali says:

    我想问一下站长 moo.fx是不是就已经在mootools里面了? 我想下载moo.fx for mootools的时候 它直接就给我转到mootools的下载页面

  11. Fdream says:

    mootools有两个js文件,一个是核心库(mootools-core.js),一个是扩展库(mootools-more.js),这两个下载下来就ok了~

  12. Ali says:

    站长 我还有个问题想问一下 就是我见过一个国外的网站 是一个人的个人介绍 它是用MOOTOOLS做的 效果很牛 就是整个页面可以滑动 页面与页面之间的切换就是用页面的滑动来完成的 当初我也是看到这个网页的效果才知道JAVASCRIPT MOOTOOLS的 请问这个效果是怎么实现的?

  13. Fdream says:

    看一下这几篇教程吧,应该就差不多了:
    # Mootools 1.2教程(10)——Fx.Tween的使用
    # Mootools 1.2教程(11)——Fx.Morph、Fx选项和Fx事件
    # Mootools 1.2教程(17)——手风琴插件

  14. Ali says:

    你好站长 看玩了你博客里面的MOOTOOLS教程 很不错 但还是感觉还是脑袋里对MOOTOOLS依然没什么“想法” 你有没有好一些的关于MOOTOOLS框架实例的网站介绍一下?

  15. moo says:

    强悍的Fdream,有个比较恐怖的问题:
    mootools的moo怎么念?

  16. Fdream says:

    To Ali:关于这个在官方网站上有链接,你可以去看看,那些demo都是很有帮助的,你可以下载下来仔细看一下。
    To moo:我也不知道,不过我把这个和tools一样的发音,哈哈~

  17. Moon says:

    Mootools 读音:目吐儿丝

  18. 过客 says:

    有没有mootools实现树视图的demo?

  19. 过客 says:

    母兔儿死

  20. Fdream says:

    呃,没留意,自己找找看,这个要写一个也不难~

  21. liul says:

    请教大师,为什么我的代码在google的浏览器下能运行.在ie,FF下都不能运行呢.代码很简单.


  22. Fdream says:

  23. liul says:




    var classaInstance=new ClassA('param1');
    function test1(){
    classaInstance.fun1();
    }

    function test2(){
    classaInstance.fun1();
    classaInstance.fun2('param-fun2')
    classaInstance.fun1();
    }

    var ClassB=ClassA.extend({
    initialize:function(name,p1,p2){
    this.name=name;
    this.p1=p1;
    this.p2=p2;
    },
    testExtendFun:function(){
    alert(this.name ' ' this.p1 ' ' this.p2);
    }
    });

    ClassB.implement({
    testImplementFun:function(){
    alert(this.name ' ' this.p1 ' ' this.p2);
    }
    });

    function test3(){
    var clb=new ClassB('name1','p1','p2');
    alert(clb.p1); //得到的结果为什么是1?
    //clb.testExtendFun(); 报错,对象不支持的熟悉
    clb.testImplementFun();//得到的结果为什么是 name1,1,2 而不是name1,p1,p2?
    }

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>