You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
}
The text was updated successfully, but these errors were encountered:
@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
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 :
The text was updated successfully, but these errors were encountered: