Cargando

Inyectar contenido en elemento - Mootools




Pulsa corazón para recibir avisos de nuevas Respuestas

  AUTOR PREGUNTA

Publicado 07 julio 2014 - 21:43
Tengo el siguiente código en mootools:

onSuccess: function(text, xml) { 
new Element('div', { 'html': text }).inject($(object), 'after'); $(object).destroy(); }

Me gustaría inyectar el contenido con un elemento de desaparecer. ¿Alguna sugerencia?
  • ¿Tienes la misma pregunta? Yo también
  • Volver arriba

PREGUNTAS SIMILARES

 

Publicado 07 julio 2014 - 22:43
El método que debes utilizar es fade.

 

Publicado 07 julio 2014 - 22:46
En base a tu código te dejo como sería la implementación de fade:

onSuccess: function(text, xml) {
new Element('div', {
'html': text, 'styles': { 'opacity': 0 } }).inject($(object), 'after').fade('in'); $(object).destroy(); }


   AUTOR PREGUNTA

Publicado 08 julio 2014 - 04:54
Gracias Nieves, me funciono perfecto



PREGUNTAS SIMILARES

X