如何使用javascript生成圆
我如何使用 javascript 在 Html 中创建一个圆圈。是否可以使用 Javascript 来完成?我已经创建了矩形和正方形,但不知道如何完成圆形。
How can i create a Circle in Html using javascript. Does it can be done using Javascript or not? I have done creating rectangles and squares but don't know how to accomplish a circle.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
以下是针对现代浏览器进行循环的简单方法:
演示。
编辑 - 将“box-sizing”(对于 Firefox 为“-moz-box-sizing”)设置为“border-box”效果更好。
Here's a simple way to do a circle for modern browsers:
Demo.
edit — It works better with the "box-sizing" ("-moz-box-sizing" for Firefox) set to "border-box".
使用 HTML5 Canvas 和 AJAX,您可以执行以下操作
:
主要内容是:
有关更多信息,请参阅:HTML5 Canvas 教程
Using HTML5 Canvas and AJAX, you can do the following:
};
the big line being the:
For more go see: HTML5 Canvas Tutorials
您需要使用以下库:-
将代码放入您的 head 标签中。
可以从此处下载
,将以下代码复制并粘贴到您希望圈子出现的位置...
您可以检查此处的文档
You need to use the following liabrary:-
Put the code in your head tag.
It is available to download from here
Copy and paste the following code where you want your circle to appear...
You can check the documentation for this from here
您可以使用一些 javascript 库来实现同样的目的。就像这里是一个第三方 js 库,它可以满足您的目的
http://processingjs.org/
You can use some javascript library for the same. Like here is a third party js library which may serve your purpose
http://processingjs.org/