Nativescript canvas

Nativescript canvas

本文关键字:canvas Nativescript      更新时间:2024-05-01

有人能告诉我画布是如何在nativeescript中创建的吗?我想要这种

var canvas = new fabric.Canvas('sheet');
canvas.isDrawingMode = true;
canvas.freeDrawingBrush.width = 30;
canvas.freeDrawingBrush.color = "#000000";
#sheet {
    border:1px solid blue;
}
<canvas id="sheet" width="400" height="400"></canvas>

在找到http://jsfiddle.net/B525t/52/适用于android和ois。

感谢

请参阅https://github.com/NativeScript/nativescript-canvas,这是NativeScript应用程序的<canvas>元素的概念验证实现。在test文件夹中查找正在使用的实现的一个小示例。如果您对组件有任何反馈,请尝试回购的问题选项卡。