Greasy Fork

Greasy Fork is available in English.

雪阅模式|SNOREAD

【自用,目前还有很多BUG】豪华广角宽屏视角 / 横向滚动阅读模式 / 翻页模式 / 充分利用屏幕空间,有建议或想法请联系 QQ 997596439 或 邮箱 [email protected]

当前为 2019-11-18 提交的版本,查看 最新版本

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         雪阅模式|SNOREAD
// @namespace    https://userscript.snomiao.com/
// @version      0.8(20191118)
// @description  【自用,目前还有很多BUG】豪华广角宽屏视角 / 横向滚动阅读模式 / 翻页模式 / 充分利用屏幕空间,有建议或想法请联系 QQ 997596439 或 邮箱 [email protected]
// @author       [email protected]
// @match        http*://*/*
// @grant        none
// ==/UserScript==

(function () {
    'use strict';

    var 更新样式 = () => {
        var 样式盒 = document.querySelector("div.snomiao-article-style")
        if (!样式盒) {
            样式盒 = document.createElement("div");
            样式盒.classList.add("snomiao-article-style");
            样式盒.style.display = "none";
            document.body.appendChild(样式盒)
        }
        var windowHeight = window.innerHeight;
        var windowWidth = window.innerWidth;
        样式盒.innerHTML = `
<style>
.snomiao-article{
    position: relative;
    top: 0;
    max-height: ${windowHeight * 0.9}px;
    box-sizing: border-box;
    width: calc(${windowWidth}px - 2em);

    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
    align-content: flex-start;

    overflow-x: auto;
    overflow-y: hidden;

    z-index:1;
    
    box-shadow: 0 0 1px blue;
    background: rgba(255,255,255,0.5);
    color: black;

    text-align: justify;
    text-indent: 0;
    padding: 1em;
}
.snomiao-article>*{
    margin: 0 -1em 0 0;
    padding: 0 2em 1em 0;
    /* max-width: 70em; */
    min-width: 32rem;
    width: min-content;
    max-height: ${windowHeight * 0.9}px;
    height:auto;
    overflow-x: auto;
    overflow-y: auto;
    background: rgba(255,255,255,0.5);
}
</style>`;
    }

    var 监听滚动 = e => {
        [...e.children].map(监听滚动)
        if (e.flag_listenScroll) return;
        e.flag_listenScroll = 1;

        var handleScroll = (event) => {
            var scrollRate = (event.detail || -event.wheelDelta) / 120 * 0.5
            var scrolled_x = (e.scrollLeft != (e.scrollLeft += scrollRate * e.clientWidth, e.scrollLeft))
            if (scrolled_x) {
                e.scrollIntoViewIfNeeded()
                // ref: http://zhanglun.xyz/2014/05/28/%E8%AF%91-%E5%8F%96%E6%B6%88%E4%BA%8B%E4%BB%B6%E5%86%92%E6%B3%A1%E7%9A%84%E5%8D%B1%E5%AE%B3/
                event.preventDefault();
                event.stopPropagation();
                return false;
            }
            var scrolled_y = (e.scrollTop != (e.scrollTop += scrollRate * e.clientHeight, e.scrollTop))
            if (scrolled_y) {
                e.scrollIntoViewIfNeeded()
                // ref: http://zhanglun.xyz/2014/05/28/%E8%AF%91-%E5%8F%96%E6%B6%88%E4%BA%8B%E4%BB%B6%E5%86%92%E6%B3%A1%E7%9A%84%E5%8D%B1%E5%AE%B3/
                event.preventDefault();
                event.stopPropagation();
                return false;
            }
            [...e.children].map(监听滚动)
        }
        e.addEventListener("mousewheel", handleScroll, { capture: false, passive: false })     // Chrome/Edge
        e.addEventListener("DOMMouseScroll", handleScroll, { capture: false, passive: false }) // FF
    }
    var 恢复文章 = e => {
        e.setAttribute("style", ``);
        // [...e.children].map(e => e.setAttribute("style", ``))
        e.classList.remove("snomiao-article")
    }
    var 监听点击 = e => {
        if (e.flag_handleClickToggleSnoReadMode) return;
        // click to update this article and scroll to it
        e.addEventListener("click", function (event) {
            监听滚动(e);
            e.scrollIntoViewIfNeeded()
            e.classList.contains("snomiao-article")
                && 进入雪阅模式(e)
        }, false);
        // dblclick to turn back
        e.addEventListener("dblclick", function (event) {
            // console.log(e, e.classList.contains("snomiao-article"))
            e.classList.contains("snomiao-article")
                && (恢复文章(e) || true)
                || 进入雪阅模式(e)
            // e.scrollLeft += e.clientWidth + 100
            event.preventDefault();
        }, true);
        e.flag_handleClickToggleSnoReadMode = 1
    }

    var 进入雪阅模式 = (e) => {
        恢复文章(e)
        window.snomiao_article = e
        监听滚动(e)
        监听点击(e)
        var { left, top } = e.getBoundingClientRect()
        e.classList.add("snomiao-article")
        e.setAttribute("style", `left: calc(1em + ${-left}px)`);
        更新样式()
    }
    // 进入雪阅模式(window.article)

    // 
    var 恢复所有文章 = () => [...document.querySelectorAll(".snomiao-article")].map(恢复文章)
    var 取文章树 = (元素, level = 0) => {
        var windowHeight = window.innerHeight
        var 元素高 = 元素.offsetHeight;
        var 主要的子元素 = (
            [...元素.children]
            // 高于屏幕
            .filter(e => e && e.offsetHeight && e.offsetHeight > windowHeight)
            // 且占比超过 50%
            .filter(e => e.offsetHeight / 元素高 > 0.5)
            // 且质量中心在 屏幕中心的 50% 内
            .filter(e => e.offsetLeft + e.offsetWidth /2 > 0.5)
            )
        var 是文章 = !主要的子元素.length
        var 子树 = 主要的子元素.map(e => 取文章树(e, level + 1))
        var 占比 = 元素.offsetHeight / 元素.parentElement.offsetHeight
        return { e: 元素, 是文章, 占比, 子树 }
    }
    var 转换文章 = ({ e, 是文章, 子树 }) => {
        子树.map(转换文章);
        if (e == document.body) return;
        是文章 && console.log(e, "是文章");
        是文章 && !(e.flag_进入过雪阅模式) && 进入雪阅模式(e) && (e.flag_进入过雪阅模式 = true);
    }
    var main = () => {
        console.log("LAUNCH:SNOREAD");
        恢复所有文章()
        var articleTree = 取文章树(document.body)
        window.debugArticleTree = articleTree
        转换文章(articleTree)
    }
    // setInterval(main, 3000)
    document.addEventListener("load", main)
    window.addEventListener("load", main)
    window.addEventListener("resize", main)
    main()

})();