-
-
Notifications
You must be signed in to change notification settings - Fork 16.7k
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
"none" transition effect makes text blurry #1002
Comments
I don't think it is just 'none' nor just on Chrome and Linux. On OS X (Yosemite), several of the transition styles (none, fade, slide and zoom) but not others (default or concave) have a dramatic and annoying "bolding" effect when you go from one slide to the next. It isn't super noticeable on Firefox on OS X, but it is on Chrome as well. |
On Yosemite with Firefox 44a2 this style helps: <style>
.reveal > .slides > section > section {
transform-style: flat;
}
</style> Safari seems to be free of font blurring issues. |
Thanks! This also prevents blurry text on Windows in Firefox 47. |
Thanks @ISO50, that's really useful. Transitions now use a flat transform-style by default, so content should no longer be blurred when using the slide, none or fade transitions. Other transitions – like concave and convex – still use preserve-3d. |
When
none
transition effect is used, the entire slides are blurry on Chrome and Linux. Interestingly, they are not blurry while the transition is in progress, i.e. until the progress bar at the bottom edge of the screen gets still.Setting a different transition effect, e.g.
linear
does not reproduce the effect.Screenshot after
none
transition:Screenshot after
linear
transition:The text was updated successfully, but these errors were encountered: