私はtyped.jsを使用しており、モバイルでは動作させたくありません。私のコードは次のとおりです。画面サイズが満たされている場合にのみ動作するようにスクリプトを調整する必要があります
jQuery(document).ready(function ($) {
// Typed Span Element
$(window).on('resize', function () {
var win = $(this);
if (win.width() < 765) {
$(".typed-element").typed({
strings: [ "Aim^1500" ],
typeSpeed: 200,
loop: false,
showCursor: true,
cursorChar: "|",
// time before typing starts
startDelay: 0,
// backspacing speed
backSpeed: 0,
// time before backspacing
backDelay: 500
});
} else {
$(".typed-element").typed({
strings: [ "Aim^1500", "Game^1500", "Internet^1500" ],
typeSpeed: 200,
loop: true,
showCursor: true,
cursorChar: "|",
// time before typing starts
startDelay: 0,
// backspacing speed
backSpeed: 0,
// time before backspacing
backDelay: 500
});
}
});
});
さらに完全にスクリプトを停止する方法があれば、さらに理想的です。私の回避策は、文字列を調整して1つの単語だけを表示することです。