touchDevice()

更新日: 2018-09-14

is.touchDevice()

現在の端末がタッチデバイス(画面タッチに対応)かどうかを判定します。

インターフェース:
not
is.touchDevice();
=> 端末がタッチデバイスならtrueを返します。

is.not.touchDevice();
=> 端末がタッチデバイスでないならtrueを返します。

デモ

端末を判定してconsole.logを出力します。

JavaScript
if (is.touchDevice()) {
  console.log('使用している端末はタッチデバイスです。');
} else {
  console.log('使用している端末はタッチデバイスではありません。');
}


© 2014-2016 Aras Atasaygin Released under the MIT license

このコンテンツはAras Atasaygin(arasatasaygin)によるis.jsドキュメントを翻訳/改変したものです。