Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Impress.js : texts and images look blurry

With Impress.js, my texts and my images look blurry.

See the next screenshot where CSS is disabled but Impress.js is enabled :

enter image description here

And now see the next screenshot where Impress.js and CSS are disabled :

enter image description here

Why are they blurry ?

This is my configuration :

<div id="Model-2" class="step" data-x="117000" data-rotate="20">
    <h2>Backbone.Model</h2>
    <p>On peut préciser des valeurs par défaut</p>
    <img src="img/18.png">
</div>
like image 937
GG. Avatar asked Nov 08 '12 17:11

GG.


1 Answers

This happens because impress.js uses translate3d and aliasing will automatically be disabled in favor of performance, unfortunately there is no quick fix.

like image 63
homerjam Avatar answered Sep 28 '22 05:09

homerjam