这么大个詹姆斯动图要吓死人啊?重改!
// ==UserScript==
// @name 虎扑论坛界面优化
// @namespace KDX Group
// @version 最终版
// @description 这么大个詹姆斯动图要吓死人啊?重改!
// @author AceKadoce
// @match https://bbs.hupu.com/**
// @icon https://www.google.com/s2/favicons?sz=64&domain=hupu.com
// @grant none
// @require https://code.jquery.com/jquery-2.1.4.min.js
// @license MIT
// ==/UserScript==
(function() {
$(() => {
$("div[class^=index_bbs-post-web-body-right]").remove();
$("div[class^=index_bbs-post-web-body-left]").css("flex", "1");
})
let resizeImg = () => {
let imgBean = $(".post-reply-list .thread-img");
imgBean.css('max-width', '100px');
imgBean.css('max-height', '100px');
}
resizeImg();
$(document).scroll(() => {
resizeImg();
})
})();