S1长图缩小

2020/2/22 下午4:38:25

目前為 2020-02-23 提交的版本,檢視 最新版本

// ==UserScript==
// @name        S1长图缩小
// @namespace   Violentmonkey Scripts
// @match       https://bbs.saraba1st.com/2b/*
// @grant       none
// @version     1.0
// @author      -
// @run-at      document-idle
// @description 2020/2/22 下午4:38:25
// ==/UserScript==


function scale(){
    Array.from(document.querySelectorAll('.pct')).map(el => {
          Array.from(el.querySelectorAll('img')).map(pic => {
              if(pic.height > 300 || pic.width > 300){
                  let scale = pic.width/pic.height
                  pic.height = 300
                  pic.width = pic.height*scale
              }
          })
      })
  }
  
scale()
window.addEventListener('scroll',scale)

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址