虎扑标题隐藏-监听鼠标版

虎扑标题隐藏,Stop social death when fishing

// ==UserScript==
// @name         虎扑标题隐藏-监听鼠标版
// @namespace    http://tampermonkey.net/
// @version      1.1
// @license      MIT
// @description  虎扑标题隐藏,Stop social death when fishing
// @author       sdujava2011
// @match        *://bbs.hupu.com/*
// @icon         https://w1.hoopchina.com.cn/images/pc/old/favicon.ico
// @grant        none
// @run-at       document-end
// ==/UserScript==

(function() {
    'use strict';
    window.addEventListener("scroll", handleScroll, true); //监听滚动事件

    function handleScroll() {
        var elements = document.getElementsByClassName('post-fix-title-title');
        for (var i = 0; i < elements.length; i++) {
            elements[i].style.display = 'none';
        }
    }
})();