Ich erstelle eine Leinwand in js_of_ocaml wie folgt.Eine Leinwand mit einer horizontalen Bildlaufleiste in js_of_ocaml
(* create document *)
let document = Dom_html.window##document
(* function to create canvas *)
let create_canvas() =
let canvas = Dom_html.createCanvas document in
canvas##width <- 500;
canvas##height <- 500;
canvas
(* create canvas *)
let canvas = create_canvas()
let start _ =
let main = get_main() in
Dom.appendChild main canvas;
Js._false in
Dom_html.window##onload <- Dom_html.handler start
Ich kann nur einen weißen Bildschirm sehen.
Jetzt möchte ich eine horizontale Bildlaufleiste auf der Leinwand hinzufügen.
Ich denke, ich muss eine Box mit einer horizontalen Bildlaufleiste, die kleiner als die weiße Leinwand ist, und die weiße Leinwand ist in der Box.
Wie kann ich das tun?
Thank you! Ich könnte mit deinem Code machen! – mmsss