MediaWiki:Common.js: Unterschied zwischen den Versionen

Aus e-vendo Wiki
Wechseln zu: Navigation, Suche
Zeile 9: Zeile 9:
  
 
$('.accordion2').click(function(){
 
$('.accordion2').click(function(){
 +
$(this).parents().children('.active2').removeClass('active2').next('.panel2').slideUp(300);
 
  $(this).toggleClass('active2').next('.panel2').slideToggle(300);
 
  $(this).toggleClass('active2').next('.panel2').slideToggle(300);
 
});
 
});

Version vom 24. Juli 2018, 14:11 Uhr

/* Das folgende JavaScript wird für alle Benutzer geladen. */


/* ==== accordion ==== */

$('.accordion').click(function(){
 $(this).toggleClass('active').next('.panel').slideToggle(300);
});

$('.accordion2').click(function(){
 $(this).parents().children('.active2').removeClass('active2').next('.panel2').slideUp(300);
 $(this).toggleClass('active2').next('.panel2').slideToggle(300);
});

$('.accordion3').click(function(){
 $(this).toggleClass('active3').next('.panel3').slideToggle(300);
});


/* ==== back to top-button ==== */

document.getElementById("btt").addEventListener("mouseenter",function(){ this.style.opacity="1.0", this.style.transition="0.3s" });
document.getElementById("btt").addEventListener("mouseleave",function(){ this.style.opacity="0.8", this.style.transition="0.3s" });