Difference between revisions of "User:茵陈/vector.js"

From Moegirlpedia
Jump to: navigation, search
m
m
Line 2: Line 2:
  
 
(function($, mw) {  
 
(function($, mw) {  
     $("#p-personal ul").append('<li id="pt-talk"><a href="/Talk:Discussion board">T</a></li>');
+
     $("#p-personal ul").append('<li><a href="/Talk:Discussion board">T</a></li>');
     $("#p-personal ul").append('<li id="pt-recent-changes"><a href="/Special:RecentChanges">R</a></li>');
+
     $("#p-personal ul").append('<li><a href="/Special:RecentChanges">R</a></li>');
     $("#p-personal ul").append('<li id="pt-special"><a href="/Special:SpecialPages">S</a></li>');
+
     $("#p-personal ul").append('<li><a href="/Special:SpecialPages">S</a></li>');
 
      
 
      
 
     var str = window.location.href;
 
     var str = window.location.href;
     str = str.substring(str.indexOf(".org/") + 5);
+
     if (str.indexOf("?title=") > -1)
 +
        str = str.substring(str.indexOf("?title=") + 7);
 +
    else
 +
        str = str.substring(str.indexOf(".org/") + 5);
 
     $("#footer-info-lastmod").wrap('<a href="/index.php?title='+str+'&action=history"></a>');
 
     $("#footer-info-lastmod").wrap('<a href="/index.php?title='+str+'&action=history"></a>');
 
     $("#firstHeading").append('<span class="mw-editsection">[<a href="/index.php?title='+str+'&action=edit">edit</a>]</span>');
 
     $("#firstHeading").append('<span class="mw-editsection">[<a href="/index.php?title='+str+'&action=edit">edit</a>]</span>');
Line 13: Line 16:
 
     var topTitle = document.getElementById("firstHeading");
 
     var topTitle = document.getElementById("firstHeading");
 
     topTitle = topTitle.innerText;
 
     topTitle = topTitle.innerText;
    topTitle = topTitle.substring(0, topTitle.lastIndexOf("["));
 
 
     $("div#p-personal").prepend('<span class="topTitle">'+topTitle+'</span>');
 
     $("div#p-personal").prepend('<span class="topTitle">'+topTitle+'</span>');
 
     $(".topTitle").before('<a href="https://en.moegirl.org" style="position: absolute; left: 15%;"><img width="28px" src="https://i.loli.net/2017/08/02/5981bf14372d1.png" alt=""/></a>');
 
     $(".topTitle").before('<a href="https://en.moegirl.org" style="position: absolute; left: 15%;"><img width="28px" src="https://i.loli.net/2017/08/02/5981bf14372d1.png" alt=""/></a>');
Line 31: Line 33:
 
     (function replaceImg() {
 
     (function replaceImg() {
 
     $("#mw-content-text img").each(function() {
 
     $("#mw-content-text img").each(function() {
             if (this.src == "https://img.moegirl.org/enmoegirl/d/d1/%E5%A4%A7%E8%90%8C%E5%AD%97.png") {
+
             if (this.src == "https://img.moegirl.org/enmoegirl/d/d1/大萌字.png") {
                 this.src = "https://i.loli.net/2017/08/02/5981bf14372d1.png";
+
                 this.src = "i.loli.net/2017/08/02/5981bf14372d1.png";
 
             }
 
             }
 
         });
 
         });
 
     })();
 
     })();
 
})(jQuery, mediaWiki);
 
})(jQuery, mediaWiki);

Revision as of 12:43, 6 August 2017

mw.loader.load('https://wikiplus-app.smartgslb.com/Main.min.js');

(function($, mw) { 
    $("#p-personal ul").append('<li><a href="/Talk:Discussion board">T</a></li>');
    $("#p-personal ul").append('<li><a href="/Special:RecentChanges">R</a></li>');
    $("#p-personal ul").append('<li><a href="/Special:SpecialPages">S</a></li>');
    
    var str = window.location.href;
    if (str.indexOf("?title=") > -1) 
        str = str.substring(str.indexOf("?title=") + 7);
    else
        str = str.substring(str.indexOf(".org/") + 5);
    $("#footer-info-lastmod").wrap('<a href="/index.php?title='+str+'&action=history"></a>');
    $("#firstHeading").append('<span class="mw-editsection">[<a href="/index.php?title='+str+'&action=edit">edit</a>]</span>');
    
    var topTitle = document.getElementById("firstHeading");
    topTitle = topTitle.innerText;
    $("div#p-personal").prepend('<span class="topTitle">'+topTitle+'</span>');
    $(".topTitle").before('<a href="https://en.moegirl.org" style="position: absolute; left: 15%;"><img width="28px" src="https://i.loli.net/2017/08/02/5981bf14372d1.png" alt=""/></a>');

    function showHide() {
    	$("#mw-content-text div").each(function() {
            if ($(this).css("display") == "none") {
                $(this).css({"display": "inline-block", "background": "rgba(255, 255, 0, .3)"});
            } else if ($(this).css("visibility") == "hidden") {
                $(this).css({"visibility": "visible", "background": "rgba(255, 255, 0, .3)"});
            }
        });
    }
    
    if ($("#editform").length === 0) showHide();

    (function replaceImg() {
    	$("#mw-content-text img").each(function() {
            if (this.src == "https://img.moegirl.org/enmoegirl/d/d1/大萌字.png") {
                this.src = "i.loli.net/2017/08/02/5981bf14372d1.png";
            }
        });
    })();
})(jQuery, mediaWiki);