« MediaWiki:Common.js » : différence entre les versions
De Mouvement Arbre-Évolution
Aucun résumé des modifications |
Aucun résumé des modifications |
||
Ligne 3 : | Ligne 3 : | ||
importScript('MediaWiki:Carrousel.js'); | importScript('MediaWiki:Carrousel.js'); | ||
$(document).ready(function () { | |||
$( | $("myVideo").html("<source src='themes/video/DJI_0213_V2.mp4' type='video/mp4'>"); | ||
$(".compteur").each(function () { | $(".compteur").each(function () { | ||
Ligne 23 : | Ligne 24 : | ||
); | ); | ||
}); | }); | ||
}); | }); |
Version du 22 octobre 2024 à 08:01
/* Tout JavaScript présent ici sera exécuté par tous les utilisateurs à chaque chargement de page. */
importScript('MediaWiki:DataTables.js');
importScript('MediaWiki:Carrousel.js');
$(document).ready(function () {
$("myVideo").html("<source src='themes/video/DJI_0213_V2.mp4' type='video/mp4'>");
$(".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);
},
}
);
});
});