-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Paged vertical text book should be scrollable horizontally #96
Comments
Hello, there are known bugs with RTL Right To Left and VWM Vertical Writing Mode in Thorium, or more precisely in the Electron/TypeScript implementation of the Readium2 "navigator" component. |
What Daniel said. We had a meeting about Japanese Layout back in 2017, which led to lots of research summarised in this issue so if you’re using ReadiumCSS for pagination – and not your own pagination engine in JS – you have to fake it i.e. left/right swipe/navigation while columns are laid out on top of one another. On iOS, the pagination API built on top of columns is using non-standard properties in Webkit to achieve that, but we have to support all major platforms – these props were removed in Chrome at the time they removed CSS regions. And it’s been clear they won’t ever be added into the CSS multicol spec, such issues belong to a CSS fragmentation module. |
CSS multi column may have difficult problem as I expected... In my project, I think I will use customized Readium-css to suppress scroll animation and overflow: hidden. Without smooth animation, it dose not a matter if it scrolls vertically or horizontally because it looks as warp. Maybe some directional effect would help with accessibility as well. Thank you for your response. |
I'm submitting a…
Hello.
I am testing readium-css to make my own EPUB viewer. There seems to be a very basic problem with the paged-mode of vertical layout.
In CJK vertical books, 'inline' text should be laid out vertically(up-to-bottom) but 'blocks' of page should be connected horizontally(right-to-left).
With paged mode of Thorium or test-app, I find the book scrolls page to page as vertically. This is a very unnatural behavior.
I can understand there is a technical difficulty on CSS multi columns but I think this is not permissible limitation.
Or is there a setting to fix it?
The text was updated successfully, but these errors were encountered: