1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
| var getBasicInfo = function () { var ViewH = $(window).height(); var DocH = $("body")[0].scrollHeight; var ScrollTop = $(window).scrollTop(); var S_V = DocH - ViewH; var Band_H = ScrollTop / (DocH - ViewH) * 100; return { ViewH: ViewH, DocH: DocH, ScrollTop: ScrollTop, Band_H: Band_H, S_V: S_V } };
function show(basicInfo) { if (basicInfo.ScrollTop > 0.001) { $(".neko").css('display', 'block'); } else { $(".neko").css('display', 'none'); } }
(function ($) { $.fn.nekoScroll = function (option) { var defaultSetting = { top: '0', scroWidth: 6 + 'px', z_index: 9999, zoom: 0.9, borderRadius: 5 + 'px', right: 60 + 'px', nekoImg: "/img/top-img/gif/Luffy.gif", hoverMsg: "一起吃🍖", color: "#6f42c1", during: 500, blog_body: "body", }; var setting = $.extend(defaultSetting, option); var getThis = this.prop("className") !== "" ? "." + this.prop("className") : this.prop("id") !== "" ? "#" + this.prop("id") : this.prop("nodeName"); if ($(".neko").length == 0) { this.after("<div class=\"neko\" id=" + setting.nekoname + " data-msg=\"" + setting.hoverMsg + "\"></div>"); } let basicInfo = getBasicInfo(); $(getThis) .css({ 'position': 'fixed', 'width': setting.scroWidth, 'top': setting.top, 'height': basicInfo.Band_H * setting.zoom * basicInfo.ViewH * 0.01 + 'px', 'z-index': setting.z_index, 'background-color': setting.bgcolor, "border-radius": setting.borderRadius, 'right': setting.right, 'background-image': 'linear-gradient(45deg, #12c2e9, #c471ed, #f64f59)', 'border-radius': '2em', 'background-size': 'contain' }); $("#" + setting.nekoname) .css({ 'position': 'fixed', 'top': basicInfo.Band_H * setting.zoom * basicInfo.ViewH * 0.01 - 50 + 'px', 'z-index': setting.z_index * 10, 'right': setting.right, 'background-image': 'url(' + setting.nekoImg + ')', }); show(getBasicInfo()); $(window) .scroll(function () { let basicInfo = getBasicInfo(); show(basicInfo); $(getThis) .css({ 'position': 'fixed', 'width': setting.scroWidth, 'top': setting.top, 'height': basicInfo.Band_H * setting.zoom * basicInfo.ViewH * 0.01 + 'px', 'z-index': setting.z_index, 'background-color': setting.bgcolor, "border-radius": setting.borderRadius, 'right': setting.right, 'background-image': 'linear-gradient(45deg, #12c2e9, #c471ed, #f64f59)', 'border-radius': '2em', 'background-size': 'contain' }); $("#" + setting.nekoname) .css({ 'position': 'fixed', 'top': basicInfo.Band_H * setting.zoom * basicInfo.ViewH * 0.01 - 50 + 'px', 'z-index': setting.z_index * 10, 'right': setting.right, 'background-image': 'url(' + setting.nekoImg + ')', }); if (basicInfo.ScrollTop == basicInfo.S_V) { $("#" + setting.nekoname) .addClass("showMsg") } else { $("#" + setting.nekoname) .removeClass("showMsg"); $("#" + setting.nekoname) .attr("data-msg", setting.hoverMsg); } }); this.click(function (e) { btf.scrollToDest(0, 500) }); $("#" + setting.nekoname) .click(function () { btf.scrollToDest(0, 500) }); return this; } })(jQuery);
$(document).ready(function () { if (document.body.clientWidth > 992) { $("#myscoll").nekoScroll({ bgcolor: 'rgb(0 0 0 / .5)', borderRadius: '2em', zoom: 0.9 });
} });
|