SYNCERのロゴ
アイキャッチ画像

NetworkInformation.effectiveType - 回線速度のレベル(ECT)

effectiveTypeは、NetworkInformationのプロパティです。回線速度のレベル(ECT)を文字列で返します。

概要

名前
effectiveType
所属
NetworkInformation
IDL
readonly attribute EffectiveConnectionType effectiveType;

enum EffectiveConnectionType {
    "2g",
    "3g",
    "4g",
    "slow-2g"
};
仕様書
https://wicg.github.io/netinfo/#dom-networkinformation-effectivetype

説明

回線速度のレベルを表す文字列(ECT)を下記のリストから返します。

ECTMinimum RTTMaximum downlink説明
slow-2g2000ms50Kbps小さなテキストの転送に適している。
2g1400ms70Kbps小さな画像の転送に適している。
3g270ms700Kbps高解像度の画像、動画の転送に適している。
4g0ms巨大な動画、ストリーミング動画などを快適に閲覧できる。

デモ

NetworkInformation.effectiveTypeのデモです。

<!-- このコードは編集できます。 -->

<!DOCTYPE html>
<html>
<head>
<style>
body { word-break: break-all ; }
div#result { white-space: pre-wrap ; }
</style>
</head>
<body>
<div id="result"></div>
<script>
var networkConnection = navigator.connection ;

getNetworkInfo() ;

function getNetworkInfo() {
	document.getElementById( "result" ).textContent = "" ;

	console.log( networkConnection ) ;
	appendText( networkConnection + "\n" ) ;

	appendText( "type: " + networkConnection.type + "\n" ) ;
	appendText( "effectiveType: " + networkConnection.effectiveType + "\n" ) ;
	appendText( "downlinkMax: " + networkConnection.downlinkMax + "\n" ) ;
	appendText( "downlink: " + networkConnection.downlink + "\n" ) ;
	appendText( "rtt: " + networkConnection.rtt + "\n" ) ;
	appendText( "saveData: " + networkConnection.saveData + "\n" ) ;
}

function appendText ( text ) {
	document.getElementById( "result" ).appendChild( document.createTextNode( text ) ) ;
}
</script>
</body>
</html>

サポート状況

ChromeFirefoxSafariEdgeIEOperaiOS SafariAndroid
61+×××× 48+××
  • Twitterでシェア
  • Facebookでシェア
  • Google+でシェア
  • はてなブックマークでシェア
  • pocketに保存
  • LINEでシェア
更新履歴
2017年10月15日 (日)
コンテンツを公開しました。