swapping to webview webrtc setup as temp solution

will build a custom C# webrtc implementation later
This commit is contained in:
2026-03-26 03:32:58 -04:00
parent 3d5c35fb15
commit a5772d7579
9 changed files with 266 additions and 149 deletions

View File

@@ -0,0 +1,3 @@
#header{
border: black solid 2px;
}

View File

@@ -0,0 +1,9 @@
<html lang="enus">
<head>
<link rel="stylesheet" href="test.css">
<script src="test.js"></script>
</head>
<body>
<Button id="header" onclick="onClicked()">Hello World!</Button>
</body>
</html>

View File

@@ -0,0 +1,10 @@
var toggle = true;
function onClicked()
{
if (toggle)
document.getElementById("header").style.color = "green";
else
document.getElementById("header").style.color = "red";
toggle = !toggle;
}