H5 SpeedTest 环境搭建

安装视频 Quick start installation guide for Ubuntu Server 19.04

虚拟机环境: Ubuntu18.4

git clone https://github.com/adolfintel/speedtest.git

# 使用apache2服务器, 如果使用nginx服务器 下载速率会有问题

apt-get install apache2 php -y

cp speedtest/* /var/www/html/

 

页面:

example-singleServer-customSettings.html

 

 

example-singleServer-gauges.html

// html 里面, 修改参数
var s=new Speedtest();

// 关闭测速时间自动设置, 默认开启
s.setParameter("time_auto",false);

// 设置下载时间 10s
s.setParameter("time_dl_max",10);
// 上传时间 15s
s.setParameter("time_ul_max",15);

 

posted on 2022-03-09 17:46  listenerln  阅读(291)  评论(0)    收藏  举报