我想绘制圆圈,我想根据一些服务器事件调整大小?有可能是js / html吗?
PS:我尝试过画布,但画布不允许单独调整圆圈的大小。
答案 0 :(得分:3)
使用CSS3 border-radius
property。
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
答案 1 :(得分:1)
尝试Raphael
http://raphaeljs.com/
http://raphaeljs.com/reference.html#Paper.circle
这是一个很好的example如何在拉斐尔画圆圈。
答案 2 :(得分:0)
也许创建一个大小相等的块元素,其高度和宽度相等,“border-radius”为50%,“border-width”为几个像素?
Here is an example.如果您需要动态调整大小,可以使用JavaScript设置高度和宽度。