aozora tategaki
by
taizooo
11/28 [2024/11/28 11:07:54]
@@ -1,9 +1,6 @@
/*
- * @title bookmarklet
- * @description my bookmarklet
- * @include http://*
- * @license MIT License
- * @require
+ * @title aozora tategaki
+ * @include http://www.aozora.gr.jp/cards/*/files/*.html
*/
// cf. https://gist.github.com/cho45/875989
/*
* @title aozora tategaki
* @include http://www.aozora.gr.jp/cards/*/files/*.html
*/
// cf. https://gist.github.com/cho45/875989
var styles = document.styleSheets;
for (var i = 0, it; it = styles[i]; i++) {
it.disabled = true;
}
var css = ' body { font-family: serif; font-size: 18pt; line-height: 1.5em; padding: 2em; -webkit-writing-mode: vertical-rl; writing-mode: vertical-rl; overflow-y: hidden; max-height: 40em; text-align: justify; box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.9); } ';
var style = document.createElement('style');
style.type = 'text/css';
style.appendChild(document.createTextNode(css));
document.querySelector('head').appendChild(style);
// bug for rendering ruby elements
document.body.innerHTML = document.body.innerHTML;
document.body.addEventListener('mousewheel', function (e) {
if (e.wheelDeltaX) {
document.body.scrollLeft -= e.wheelDeltaX;
} else {
document.body.scrollLeft += e.wheelDelta;
}
e.preventDefault();
}, false);
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。