6

私のキャプションの品質はひどいものです。テキストは非常にぼやけています (写真にテキストがあり、写真を大きくした場合のように)。

CSSを削除すると、次のことに気付きました。

transform: perspective(2000px);

品質は正常に戻ります。

JSSOR がこれをすべてのキャプションに追加するのはなぜですか?どうすれば無効にできますか?

簡単な解決策の 1 つ (おそらく最も美しいとは言えません) は、外部スタイルシートで transform を none に設定し、それを !important に設定することです。それは唯一のものですか?

4

3 に答える 3

0
  To avoid blurry text and remain slider responsive with jssor slider, 
  some   certain change is required in file name called 'jssor.utils.js'.

 In line 1045   transformValue += " perspective(2000px)"; 
  change to 
     transformValue += "none";

 And line 1092  elmt.style[GetTransformProperty(elmt)] = "perspective(2000px)"; 
 change to 
    elmt.style[GetTransformProperty(elmt)] = "none";
于 2016-07-01T06:46:04.007 に答える
-1

style="transform: none !important; -webkit-transform: none !important;" 書き込みスタイルの内部 divを試すことができます。

于 2015-07-03T06:39:27.977 に答える