热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

如何输入画布文本框和按钮框?-Howinputcanvastextboxandbuttonbox?

Imstudyingcanvasprogramming.我正在学习画布编程。Imtrytomakecanvasdrawthroughtextarrayandinpu

I'm studying canvas programming.

我正在学习画布编程。

I'm try to make canvas draw through text array and input type text ..

我试图通过文本数组和输入类型文本绘制画布。

How make this same photo ?

怎么拍这张照片?

enter image description here

HTML Code:








Your browser does not support the canvas element.





1 个解决方案

#1


0  

document.write writes text to the document. You need to write it to the canvas element. Canvas provides it's own methods for this: fillText and strokeText, so you'll need to use one of these.

document.write将文本写入文档。您需要将其写入canvas元素。 Canvas为此提供了自己的方法:fillText和strokeText,因此您需要使用其中之一。

You'll also need to call the Javascript for when you want this to happen. In my code below I'm calling it from a click on a link, but it could equally be called from an onload event, a button click etc. I'm also providing x and y coordinates for where I want the text written on the canvas.

您还需要在需要时调用Javascript。在我下面的代码中,我通过单击链接调用它,但它同样可以从onload事件,按钮单击等调用。我也提供x和y坐标,我希望在哪里写入文本帆布。









Your browser does not support the canvas element.

Write

推荐阅读
author-avatar
爱是种承诺ml
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有