Posteado por: evelio en: 2008.Agosto.18
Más y más links de tutoriales de MooTools:
30 dias de MooTools 1.2 (recién comienza)
Y desde el wiki del proyecto:
Mootorial
Basic Overview
More in depth Overview
Basic Class Template
Effects explanationThe_Best_Javascript_Effects_Now_Even_Better
How to do Chaining
How to link Mootools to Flash with Swiff
Element Storage
Basic Ajax
A Moo Leer
Posteado por: evelio en: 2008.Agosto.12
Basado en dos artículos de David Walsh (lectura obligada y recomendada):
Implementing Basic and Fancy Show/Hide in MooTools 1.2
MooTools Gone Wild: Element Flashing
por cierto gracias!! n_n
He agregado estas funcionalidades a mi “core” de MooTools:
/*
Script: Flash-ShowAndHide.js
An Element extension which allows flash, show and hide (and with fade) an element.
License:
MIT-style license.
*/
Element.implement
({
hide:function()
{
this.setStyle(‘display’, ‘none’);
return this;
},
show:function()
{
this.setStyle(‘display’, ”);
return this;
},
isVisible:function()
{
return this.getStyle(‘display’ ) != [...]
Posteado por: evelio en: 2008.Agosto.3
Despues de unas largas vacaciones, retomo con unos links:
jQuery
Visual jQuery
Cheat sheet de jQuery
Prototype
8 Semanas de Prototype
Cheat sheet de Prototype
mi favorito y más usado:
MooTools
10 recursos para aprender MooTools 1.2
Cheat sheet de MooTools
Comentarios recientes