« MediaWiki:Common.js » : différence entre les versions
De Mouvement Arbre-Évolution
Aucun résumé des modifications Balise : Révoqué |
Aucun résumé des modifications |
||
(35 versions intermédiaires par le même utilisateur non affichées) | |||
Ligne 2 : | Ligne 2 : | ||
importScript('MediaWiki:DataTables.js'); | importScript('MediaWiki:DataTables.js'); | ||
importScript('MediaWiki:Carrousel.js'); | importScript('MediaWiki:Carrousel.js'); | ||
$('#listePublique').DataTables( { | |||
responsive: true | |||
}) | } ); | ||
$(document).ready(function () { | |||
$('.versPartenaire').click(function() { | |||
var URL = $(this).attr("title"); | |||
window.open(URL,'_self','',''); | |||
}); | |||
$('.versExtérieur').click(function() { | |||
var URL = $(this).attr("href"); | |||
window.open(URL,'_blank','',''); | |||
}); | |||
$(".compteur").each(function () { | |||
$(this) | |||
.prop("Counter", 0) | |||
.animate( | |||
{ | |||
Counter: $(this).text(), | |||
}, | |||
{ | |||
duration: 4000, | |||
easing: "swing", | |||
step: function (now) { | |||
now = Number(Math.ceil(now)).toLocaleString('en'); | |||
$(this).text(now); | |||
}, | |||
} | |||
); | |||
}); | |||
}); |
Dernière version du 18 décembre 2024 à 13:06
/* Tout JavaScript présent ici sera exécuté par tous les utilisateurs à chaque chargement de page. */
importScript('MediaWiki:DataTables.js');
importScript('MediaWiki:Carrousel.js');
$('#listePublique').DataTables( {
responsive: true
} );
$(document).ready(function () {
$('.versPartenaire').click(function() {
var URL = $(this).attr("title");
window.open(URL,'_self','','');
});
$('.versExtérieur').click(function() {
var URL = $(this).attr("href");
window.open(URL,'_blank','','');
});
$(".compteur").each(function () {
$(this)
.prop("Counter", 0)
.animate(
{
Counter: $(this).text(),
},
{
duration: 4000,
easing: "swing",
step: function (now) {
now = Number(Math.ceil(now)).toLocaleString('en');
$(this).text(now);
},
}
);
});
});