gwt 嵌入html_GWT和HTML5画布演示
生活随笔
收集整理的這篇文章主要介紹了
gwt 嵌入html_GWT和HTML5画布演示
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
gwt 嵌入html
這是我對(duì)GWT和HTML5 Canvas的第一個(gè)實(shí)驗(yàn)。 我的第一個(gè)嘗試是創(chuàng)建矩形,僅用幾行代碼就得出了這樣的內(nèi)容:碼:
public class GwtHtml5 implements EntryPoint {static final String canvasHolderId = "canvasholder";static final String unsupportedBrowser = "Your browser does not support the HTML5 Canvas";static final int height = 400;static final int width = 500;final CssColor colorRed = CssColor.make("red");final CssColor colorGreen = CssColor.make("green");final CssColor colorBlue = CssColor.make("blue");Canvas canvas;Context2d context;public void onModuleLoad() {canvas = Canvas.createIfSupported();if (canvas == null) {RootPanel.get(canvasHolderId).add(new Label(unsupportedBrowser));return;}createCanvas();}private void createCanvas(){canvas.setWidth(width + "px");canvas.setHeight(height + "px");canvas.setCoordinateSpaceWidth(width);canvas.setCoordinateSpaceHeight(height);RootPanel.get(canvasHolderId).add(canvas);context = canvas.getContext2d();context.beginPath();context.setFillStyle(colorRed);context.fillRect(100, 50, 100, 100);context.setFillStyle(colorGreen);context.fillRect(200, 150, 100, 100);context.setFillStyle(colorBlue);context.fillRect(300, 250, 100, 100);context.closePath();}}我的Spring Ball嘗試了一些我在Web上找到的代碼。
參考:來(lái)自GlyphSoft博客的JCG合作伙伴 Mark Anro Silva的GWT和HTML5 Canvas演示 。
翻譯自: https://www.javacodegeeks.com/2012/05/gwt-and-html5-canvas-demo.html
gwt 嵌入html
總結(jié)
以上是生活随笔為你收集整理的gwt 嵌入html_GWT和HTML5画布演示的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 怎么检测新买电脑的配置?
- 下一篇: Spring MVC:Trgger手动验