readium / readium-css

🌈 A set of reference stylesheets for EPUB Reading Systems, starting with Readium Mobile
https://readium.org/readium-css/
BSD 3-Clause "New" or "Revised" License
90 stars 20 forks source link

Alternate background colors for lines #39

Closed JayPanoz closed 4 years ago

JayPanoz commented 6 years ago

This will be part of the experimental features we may ship in the beta release.

38626521-112515bc-3dad-11e8-9808-75829c6fb25f

A pure CSS solution has some drawbacks, as demonstrated in issue 18:

  1. it will only work reasonably well in the scrolled view;
  2. we have to claim responsibility for at least the line-height (paragraphs);
  3. you can end up with the same background color at the end of one paragraph and the beginning of another;
  4. I’m unable to tell how much memory and CPU this will consume since linear-gradient is quite heavy, CSS-wise.

Possible alternative is something like lining.js, which might bring support to the paged view – right now, I can’t tell.

JayPanoz commented 6 years ago

Related: https://twitter.com/Bunker_D_/status/994921740039008256 (sorry, tweet in French)

But you can test the Chrome or Firefox extension.

Unfortunately, I could neither find a repo nor an account so it’s difficult to get insights about this particular feature and its implementation.

Help from @garconvacher to contact the creator of this extension, maybe?

garconvacher commented 6 years ago

Oops... I didn't see your request for help before :-/ I'm going to dig.

JayPanoz commented 6 years ago

Thanks @garconvacher 🙏

JayPanoz commented 6 years ago

Did a super quick test with lining.js and results are obviously a lot better since each line is wrapped in a <text-line> element.

capture d ecran 2018-05-31 a 10 09 43

As you can see, works with pagination.

The main caveat though is that you have to modify the DOM and this can possibly screw the CSS cascade + it takes some time to update when resizing the window – it’s pretty visible, I’d say it’s feeling like 1 second or so.

garconvacher commented 6 years ago

(Found this tweet from the developer of the DysAide extension. I send him a PM on Twitter with a link to this thread :) )

danielweck commented 6 years ago

@JayPanoz

The main caveat though is that you have to modify the DOM and this can possibly screw the CSS cascade + it takes some time to update when resizing the window – it’s pretty visible, I’d say it’s feeling like 1 second or so.

Also, modifying the DOM potentially breaks existing CFI references that are used internally to record bookmarks / annotations.

In Readium "1" there is a mechanism / API to blacklist DOM fragments during CFI "processing" (i.e. when a CFI expression is generated from a DOM location / range, and when a DOM location / range is resolved from a CFI expression). If I remember correctly, blacklisted DOM fragments are effectively ignored from the root down (in their entirety), in other words it is not possible to "skip" intermediary wrapping elements such as <text-lines> added by the lining.js utility library. PS: blacklisted elements are defined via their ID or CSS Selector, and this typically includes well-known items such as the additional HTML markup that can potentially be injected by MathJax.

In Readium2 there is currently no such mechanism at all, ... but then there is no real support for CFI either, yet ;) That being said, readium-desktop currently uses a pseudo-canonical CSS Selector (i.e. not just an ID reference) to record the reading location (DOM element), so modifying the DOM in order to implement special reading system features (such as line-by-line highlighting, page-break formatting, etc.) still has a disruptive ; if not destructive ; effect.

garconvacher commented 5 years ago

So, DysAide extension is now Aidodys Free due to a partnership with the Aidodys company.

JayPanoz commented 4 years ago

This has been resolved during today’s engineering call.

Here are the notes:

So this is out of scope for Readium CSS, and should be handled programmatically.

HadrienGardeur commented 4 years ago

Instead of closing this issue, could we move it to the architecture repo? I think that all of these discussions are still relevant to our project.

JayPanoz commented 4 years ago

Ah so I can reopen the issue but not transfer it via the built-in feature.

But someone being an admin in both the ReadiumCSS and Architecture repos should be able to do so.

HadrienGardeur commented 4 years ago

Issue moved to readium/architecture #114 via ZenHub