Horizontal page turning of vertical text #370
-
Hello. (Thank you for answering my question last time.) How can I flip a vertically written text for horizontal page turning? (not scroll) Best Regards. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 4 replies
-
I'm not sure I understand what you mean. Is this what you expect? paginated-vertical.mov |
Beta Was this translation helpful? Give feedback.
-
Hi, |
Beta Was this translation helpful? Give feedback.
-
As a confirmation of sorts, this is indeed due to a limitation of CSS multicolumn, which was discussed in ReadiumCSS 4 years ago: Chinese epub vertical documents cannot be read normally Some background. On iOS, the pagination API used by iBooks is built on top of columns and is using non-standard properties in Webkit to achieve what’s requested here, but ReadiumCSS has to support all major platforms & these props were removed in Chrome at the time they removed CSS regions. It’s also been made crystal clear they won’t ever be added into the CSS multicol spec, as such issues belong to a CSS fragmentation module. There are some additional details in the ReadiumCSS docs. So the only way to achieve that, more or less, is to cheat at the moment – e.g. swiping horizontally scrolls vertically w/o an animation. |
Beta Was this translation helpful? Give feedback.
-
in Thorium we disable "pagination" (i.e. CSS columns) when rendering vertical writing mode (to be precise: right-to-left VWM for Japanese, which is the only implementation that has been tested and validated, by Japanese users). |
Beta Was this translation helpful? Give feedback.
I see, unfortunately I don't think it's possible to have vertical text with horizontal paginated mode (
scroll = false
). The reason is technical, we use CSS columns to paginate the content, and web views lay out the columns vertically when usingwriting-mode: vertical-lr
. But I'm not an expert on this subject, you may want to open an issue on the Readium CSS project where this is handled.