CanvasInput icon indicating copy to clipboard operation
CanvasInput copied to clipboard

HTML5 Canvas Text Input

Results 32 CanvasInput issues
Sort by recently updated
recently updated
newest added

Hi guys I want to create an InputCanvas and retrieve the String when the user hits enter. var input = new CanvasInput({ ... ... value: 'Test', onsubmit: function () {console.log(self.value);}...

If I'm not missing something it's currently not possible to use the input type "password" or something similar to it, whereas it would be a great-to-have feature. If you're not...

Just pass `password` as a type and have the input covered with asterix

```js var input = new CanvasInput({ canvas: document.getElementById('canvas') }); input.value('xxx') input.onkeydown(()=>{ console.log(input.value()) }) ```

Hi, I did following: 1. create a CanvasInput, 2. Destroy that CanvasInput object and clearRect whole canvas. After that wherever I click on the canvas there is error. Can you...

It is normal to use this plugin on pages that have only one canvas, and then when I use it in the game engine I don't see the plugin, only...

Accounting for Text added via menu or special Linux style of pasting.