0
我想調整我正在控制的屏幕的大小,使其不顯示任何滾動條。我已經通過調整html元素的大小來做到這一點,但是通過這樣做,光標的位置和移動在遠端也會發生變化。我使用的鱷梨在Web客戶端上的鱷梨調整大小調整屏幕
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();