small-packages/luci-app-speedtest-web/luasrc/view/speedtest-web/speedtest-web.htm
2026-05-10 09:48:30 +08:00

14 lines
649 B
HTML

<%+header%>
<div class="cbi-map">
<h2 name="content"><%=translate("Speedtest Web")%></h2>
<iframe id="speedtest-web" style="width: 100%; min-height: 500px; border: none; border-radius: 3px;"></iframe>
</div>
<script type="text/javascript">
document.getElementById("speedtest-web").src = window.location.protocol + "//" + window.location.hostname + ":8989";
document.getElementById("speedtest-web").height = document.documentElement.clientHeight;
window.onresize = function(){
document.getElementById("speedtest-web").height = document.documentElement.clientHeight;
}
</script>
<%+footer%>