MediaWiki: Common.js: Unterschied zwischen den Versionen
Aus Joachim Camerarius (1500-1574)
Noeth (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
Noeth (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
| Zeile 1: | Zeile 1: | ||
/* Das folgende JavaScript wird für alle Benutzer geladen. */ | /* Das folgende JavaScript wird für alle Benutzer geladen. */ | ||
/*Menu-toggle*/ | |||
$("#menu-toggle").click(function(e) { | |||
e.preventDefault(); | |||
$("#wrapper").toggleClass("active"); | |||
alert(1); | |||
}); | |||
/***************************************************************/ | /***************************************************************/ | ||
Version vom 26. Februar 2019, 19:13 Uhr
/* Das folgende JavaScript wird für alle Benutzer geladen. */
/*Menu-toggle*/
$("#menu-toggle").click(function(e) {
e.preventDefault();
$("#wrapper").toggleClass("active");
alert(1);
});
/***************************************************************/
/********* Animate stat-counter on main page ******************/
/**************************************************************/
$('.counting').each(function() {
var $this = $(this),
countTo = $this.attr('data-count');
$({ countNum: $this.text()}).animate({
countNum: countTo
},
{
duration: 2000,
easing:'linear',
step: function() {
$this.text(Math.floor(this.countNum));
},
complete: function() {
$this.text(this.countNum);
//alert('finished');
}
});
});