MediaWiki: Common.js
De enunpimpam
(Página creada con «→Cualquier código JavaScript escrito aquí se cargará para todos los usuarios en cada carga de página: $('[data-href]').on('click', function() { location.href =…») |
|||
Línea 3: | Línea 3: | ||
$('[data-href]').on('click', function() { | $('[data-href]').on('click', function() { | ||
location.href = $(this).attr('data-href'); | location.href = $(this).attr('data-href'); | ||
+ | }); | ||
+ | |||
+ | /* Carga la animacion portada*/ | ||
+ | |||
+ | $(window).on('load', function () { | ||
+ | $(".seccion").addClass("animated zoomIn"); | ||
}); | }); |
Revisión del 15:48 2 may 2020
/* Cualquier código JavaScript escrito aquí se cargará para todos los usuarios en cada carga de página */ $('[data-href]').on('click', function() { location.href = $(this).attr('data-href'); }); /* Carga la animacion portada*/ $(window).on('load', function () { $(".seccion").addClass("animated zoomIn"); });