SDKLauncher-iOS icon indicating copy to clipboard operation
SDKLauncher-iOS copied to clipboard

reflow intra spine item page load event triggered too early

Open RichardPat opened this issue 9 years ago • 2 comments

In a reflow document, when attempting to animate the uiwebview during a page transition within the same spine item, I discovered that the page loaded event is sent before the uiwebview visually updates.

Whilst experimenting with animations using javascript, I found a solution that renders the offset change before sending the page load event by animating an opacity change in the document. I'm not certain why it works, or if it's uiwebview specific, but I'm posting it here for further evaluation in the hopes that maybe a cleaner solution can be found.

In reflowable_view.js :

function redraw() {
    var offsetVal =  -_paginationInfo.pageOffset + "px";

    _$epubHtml.css("opacity", "0.01");

    if (_htmlBodyIsVerticalWritingMode)
    {   
        _$epubHtml.animate({
                           top: offsetVal,
                           opacity: 1
                           }, 0, function() {
                           });
    }
    else
    {
        var ltr = _htmlBodyIsLTRDirection || _htmlBodyIsLTRWritingMode;
        _$epubHtml.animate({
                           left: ltr ? offsetVal : "",
                           right: !ltr ? offsetVal : "",
                           opacity: 1
                           }, 0, function() {
                           });
    }

    showBook(); // as it's no longer hidden by shifting the position
}

RichardPat avatar May 18 '15 08:05 RichardPat

@RichardPat thank you for sharing this code. We tried this approach in our WKWebView based Readium reader and found that it did not reliably send the event after the page rendered. (The timing of these things seems so platform, device and book dependent). Unfortunately it seems like there is no reliable event from UIWebView or WKWebView that is sent after a successful render pass (which is a common gripe out there on the Internet) but it is certainly worth exploring more. If you find something interesting please share it. Thanks! Patrick

bluefirepatrick avatar May 19 '15 15:05 bluefirepatrick

Possibly duplicate of: https://github.com/readium/SDKLauncher-iOS/issues/53 See also: https://github.com/readium/readium-shared-js/issues/172 @JCCR has been working on this: https://github.com/readium/readium-shared-js/pull/179

danielweck avatar May 22 '15 07:05 danielweck