[talks text=’
Swiper.jsを使ってライブドアニュースのスマホ版のようなコンテンツスライダーを作ろうと思ったらAndroid端末で文字がぼやけてしまった。その回避策メモ。
‘]
Swiper初期化オプションに以下を追記
roundLengths: true
こんな感じ
let swiper = new Swiper(".swiper-container", {
speed: 200,
roundLengths: true
}
[talks text=’
Swiper.jsを使ってライブドアニュースのスマホ版のようなコンテンツスライダーを作ろうと思ったらAndroid端末で文字がぼやけてしまった。その回避策メモ。
‘]
Swiper初期化オプションに以下を追記
roundLengths: true
こんな感じ
let swiper = new Swiper(".swiper-container", {
speed: 200,
roundLengths: true
}
コメント欄