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

From Moegirlpedia
Jump to: navigation, search
m
m
Line 2: Line 2:
  
 
(function($, mw) {  
 
(function($, mw) {  
 +
    var str = window.location.href;
 
     if (str.indexOf("Mainpage") < 0)
 
     if (str.indexOf("Mainpage") < 0)
 
         $("body").prepend('<a href="https://en.moegirl.org"><img class="topButton1" src="https://i.loli.net/2017/08/07/59886347bd66f.png"></a>');
 
         $("body").prepend('<a href="https://en.moegirl.org"><img class="topButton1" src="https://i.loli.net/2017/08/07/59886347bd66f.png"></a>');
Line 9: Line 10:
 
     $("#p-personal ul").append('<li><a href="/Special:RecentChanges">R</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>');
 
     $("#p-personal ul").append('<li><a href="/Special:SpecialPages">S</a></li>');
   
+
 
    var str = window.location.href;
 
 
     if (str.indexOf("?title=") > -1)  
 
     if (str.indexOf("?title=") > -1)  
 
         str = str.substring(str.indexOf("?title=") + 7);
 
         str = str.substring(str.indexOf("?title=") + 7);

Revision as of 23:49, 7 August 2017

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

(function($, mw) { 
    var str = window.location.href;
    if (str.indexOf("Mainpage") < 0)
        $("body").prepend('<a href="https://en.moegirl.org"><img class="topButton1" src="https://i.loli.net/2017/08/07/59886347bd66f.png"></a>');
    $("body").prepend('<a href="/Special:MyPage"><img class="topButton2" src="https://i.loli.net/2017/08/07/598863f4c1bf8.png"></a>');

    $("#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>');

    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" style="display: none;">[<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" title="' + 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/%E5%A4%A7%E8%90%8C%E5%AD%97.png") {
                this.src = "https://i.loli.net/2017/08/02/5981bf14372d1.png";
            }
        });
    })();

    if (document.body.scrollHeight >= $(window).height() + 300) {
        $("#p-personal").hide();
        window.onscroll = function() { 
        var len = window.scrollY; 
        if (len < 300)
            $("#p-personal").slideUp(300);
        else
            $("#p-personal").slideDown(300);
        }; 
    } else {
        $("#p-personal").show();
    }
})(jQuery, mediaWiki);