vert-rl

    @@ -52,6 +52,7 @@ line-height: 1.5; font-family: "AokinMincho", "Noto Serif JP", serif; font-size: 20pt; + font-weight: 500; margin-top: 1em; margin-bottom: 1em; max-height: 100%
  • /*
     * @title vert-rl
     * @description ng x-browser vertical viewer
     * @include http://*
     * @include https://*
     * @license MIT License https://opensource.org/licenses/MIT
     * @javascript_url
     */
    
    // "ng" is not next generation, not good
    
    // PDFize and "AokinMincho" font
    // http://a2k.aill.org/
    //  http://a2k.aill.org/text.html
    
    // e.g.
    // http://www.aozora.gr.jp/cards/000096/files/2093_28841.html
    // https://ssig33.com/text/%E3%83%90%E3%83%BC%E3%83%99%E3%82%AD%E3%83%A5%E3%83%BC
    // http://anond.hatelabo.jp/20130218042353
    
    // TODO
    // - rotate punctuations
    //  - UTR #50?
    //   - http://www.unicode.org/reports/tr50/
    {
        'use strict';
    
        // don't use `Array.from(arylike, mapfn)` for avoid Global Object Pollution
        // e.g. prototype.js; ignoring 2nd map-func due to prototype.js overwritten that
        //      Array.from = $A;
        // i.e. unworks below
        //      Array.from(document.styleSheets, sheet => sheet.disabled = true);
        // workarounds and detail c.f.
        // https://gist.github.com/noromanba/d007fd37daa55a12681db7c7cd800b8e
        [...document.styleSheets].forEach(sheet => sheet.disabled = true);
    
        const wall = document.head || document.body || document.documentElement;
        wall.appendChild(Object.assign(document.createElement('style'), {
            // vertical c.f.
            // https://developer.mozilla.org/en-US/docs/Web/CSS/writing-mode
            // https://developer.mozilla.org/en-US/docs/Web/CSS/text-orientation
            textContent: `
                html {
                    writing-mode: vertical-rl;
                    direction: ltr;
                    overflow-y: hidden;
                }
    
                body {
                    text-align: justify;
                    text-orientation: upright;
                    line-height: 1.5;
                    font-family: "AokinMincho", "Noto Serif JP", serif;
                    font-size: 20pt;
                    font-weight: 500;
                    margin-top: 1em;
                    margin-bottom: 1em;
                    max-height: 100%
                }
    
                a {
                    text-decoration-line: none;
                }
    
                rt {
                    font-size: 11pt;
                }
    
                img {
                    max-height: 100%;
                }
            `,
        }));
    
        // TBD replace to WheelEvent
        //     https://developer.mozilla.org/en-US/docs/Web/API/WheelEvent
        // TODO fix on Firefox
        document.body.addEventListener('mousewheel', evt => {
            if (evt.wheelDeltaX) {
                document.body.scrollLeft -= evt.wheelDeltaX;
            } else {
                document.body.scrollLeft += evt.wheelDelta;
            }
            evt.preventDefault();
        });
    
        // TODO handle scroll/jump keybind
    
        //window.scrollTo(0 ,0);
        window.scroll(document.body.clientWidth, 0);
    }
    
    // DEV
    // Scripts/Extensions for Chrome/mium and/or WebKit/Blink
    //
    // aochora
    // http://subtech.g.hatena.ne.jp/cho45/20110319/1300542682
    //  https://gist.github.com/cho45/875989
    //   https://gist.githubusercontent.com/cho45/875989/raw/tate.user.js
    //
    // ezoezora
    // https://cpplover.blogspot.com/2011/03/chrome-extension.html
    // https://cpplover.blogspot.com/2011/05/blog-post.html
    // https://cpplover.blogspot.com/2011/03/blog-post_22.html
    //  https://chrome.google.com/extensions/detail/jkjlaidhndkfgjhchppdfipigaobmidh
    //
    // hatozora
    // http://rosylilly.hatenablog.com/entry/2012/01/14/214244
    //  https://github.com/rosylilly/Tatezora
    //  https://github.com/rosylilly/Tatezora/blob/master/for_userscript.user.js
    //   https://raw.githubusercontent.com/rosylilly/Tatezora/master/for_userscript.user.js
    
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2018/05/06 08:56:11 - 2018-05-06
  2. 2017/05/14 08:57:27 - 2017-05-14
  3. 2017/05/14 08:44:17 - 2017-05-14
  4. 2017/04/19 09:10:43 - 2017-04-19
  5. 2017/04/19 09:09:33 - 2017-04-19
  6. 2017/04/17 08:53:12 - 2017-04-17
  7. 2017/04/17 08:40:20 - 2017-04-17
  8. 2017/04/17 08:39:14 - 2017-04-17
  9. 2017/04/17 05:05:52 - 2017-04-17
  10. 2017/04/16 09:58:30 - 2017-04-16
  11. 2017/04/16 09:33:09 - 2017-04-16