Benutzer:名探偵 クリス/vector.js: Unterschied zwischen den Versionen

Aus ConanWiki
Zur Navigation springen Zur Suche springen
Inhalt hinzugefügt Inhalt gelöscht
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 6: Zeile 6:
 
if($(window).scrollTop() >= 160 && $(window).height() >= $("#mw-navigation").height()){
 
if($(window).scrollTop() >= 160 && $(window).height() >= $("#mw-navigation").height()){
 
$("#mw-panel").css("position","fixed");
 
$("#mw-panel").css("position","fixed");
$("#mw-panel").css("top", "-50px");
+
$("#mw-panel").css("top", "-30px");
 
}else{
 
}else{
 
$("#mw-panel").attr("style", "");
 
$("#mw-panel").attr("style", "");

Version vom 31. Juli 2018, 19:19 Uhr

$(document).ready(function() {
   $('<div class="portal" role="navigation"><h3>Meine Werkzeuge</h3><div class="body"><ul><li id="n-NewFiles"><a href="/wiki/Special:NewFiles">Neue Dateien</a></li></ul></div></div>').appendTo('#mw-panel');
   $('#p-commu').remove();
   $('#p-werb').remove();
   $(window).scroll(function() {
      if($(window).scrollTop() >= 160 && $(window).height() >= $("#mw-navigation").height()){
         $("#mw-panel").css("position","fixed");
         $("#mw-panel").css("top", "-30px");
      }else{
         $("#mw-panel").attr("style", "");
      }
   });
});