rpikvm/templates/mouse.html

40 lines
632 B
HTML
Raw Normal View History

2020-05-25 01:55:31 +02:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Klávesnice remote SSH</title>
<style>
</style>
<script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
HID mouse service, POST data to /mouse <br/>
<div>
</div>
<button onclick="sendMouse()" value="Test mouse"/>
<script>
function sendMouse() {
var obj = {
x: 0,
y: 0,
btn: 0,
wheel: 0,
}
var ret = $.ajax({
type: "POST",
url: "hid/mouse",
data: JSON.stringify(obj),
contentType: "application/json; charset=utf-8",
dataType: "json"
});
};
</script>
</body>
</html>