aozora tategaki
by
taizooo
11/28 [2024/11/28 11:07:54]
-
/*
* @title aozora tategaki
* @include http://www.aozora.gr.jp/cards/*
* @require https://raw.github.com/necolas/normalize.css/master/normalize.css
*/
// 青空文庫 縦書き拡張 http://subtech.g.hatena.ne.jp/cho45/20110319/1300542682
// cf. https://gist.github.com/cho45/875989
// normalize.css https://github.com/necolas/normalize.css
// commentToText
// https://github.com/tombfix/core/blob/2b0f251ff7d5968a138e2a4e8d24d5947005826a/xpi/chrome/content/library/01_utility.js#L2489
var styles = document.styleSheets;
for (var i = 0, it; it = styles[i]; i++) {
it.disabled = true;
}
var css = commentToText(function () {/*
body {
font-family: "ヒラギノ明朝 Pro W3","HG明朝E","MS P明朝","MS 明朝",serif; !important;
font-size: 14pt !important;
line-height: 1.8em !important;
padding: 1em !important;
-webkit-writing-mode: vertical-rl;
writing-mode: vertical-rl;
overflow-y:hidden;
text-align: justify;
letter-spacing: 0.1em;
background-color: grey !important;
color: black !important;
top: 0;
right: 0;
margin: 14pt;
}
a {
text-decoration:none;
pointer-events: none;
color: black !important;
}
rt {
display:none;
}
img {
max-height:100%;
width:auto;
}
pre {
white-space:pre-wrap;
font-family: "ヒラギノ明朝 Pro W3","HG明朝E","MS P明朝","MS 明朝",serif; !important;
}
*/});
// 先見日記用
var css2 = commentToText(function () {/*
#bass-content-body > center > table:nth-child(2) {
height:auto!important;
}
#bass-content-body > center > table:nth-child(2) > tbody > tr > td:nth-child(2) > table:nth-child(6) > tbody > tr > td:nth-child(1),
#bass-archive > ul,
#bass-archive > header,
#bass-archive > footer {
display:none;
}
*/});
css = css + css2;
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('wheel', function (e) {
if (e.wheelDeltaX) {
document.body.scrollLeft -= e.wheelDeltaX;
} else {
document.body.scrollLeft += e.wheelDelta;
}
e.preventDefault();
}, {passive: false});
// commentToText via tombloo
function commentToText(commentFunc) {
return (commentFunc).toString().replace(/^.*?\r?\n/, '').replace(/\r?\n.*?$/, '');
}
-
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。