我想将我正在控制的屏幕调整为浏览器的可用屏幕而不显示任何滚动条。我已经通过调整 html 元素的大小来做到这一点,但是通过这样做,光标的位置和移动也会在远程端发生变化。我正在使用鳄梨酱的示例应用程序
var display = document.getElementById("display");
// Instantiate client, using an HTTP tunnel for communications.
var guac = new Guacamole.Client(
new Guacamole.HTTPTunnel("tunnel")
);
// Add client to display div
var dis = guac.getDisplay().getElement();
dis.getElementsByTagName("canvas")[0].style = "width:1100px;"
dis.setAttribute("style", "width:1100px");
display.appendChild(guac.getDisplay().getElement());
// Error handler
guac.onerror = function(error) {
alert(error);
};
// Connect
guac.connect();