运行效果:

<!DOCTYPE html>
<html>
<head>
</head>
<body>
<canvas id="drawing" width="" height="">A drawing of someing!</canvas>
<script type="text/javascript">
//绘制中国银行标志
var drawBoc = function(){
var drawing = document.getElementById('drawing');
if(drawing.getContext) {
var context = drawing.getContext('2d');
//画外环
context.fillStyle = '#f00';
context.strokeStyle = '#f00';
context.beginPath();
context.arc(, , , , *Math.PI, false);
context.closePath();
context.stroke();
context.fill();
context.save(); context.fillStyle = '#fff';
context.beginPath();
context.arc(, , , , *Math.PI, false);
context.closePath();
context.stroke();
context.fill(); //画外面的口(圆角矩形)
context.restore();
roundRec(context, , , , , , true, false);
//画里面的口
context.fillStyle = '#fff';
context.fillRect(, , , );
//画上下两竖
context.fillStyle = '#f00';
context.fillRect(, , , );
context.fillRect(, , , ); }
};
//画圆角矩形
var roundRec = function(context, x, y, width, height, radius, fill, stroke){
if(typeof stroke == 'undefined') {
stroke = true;
}
if(typeof radius == 'undefined') {
radius = ;
}
context.beginPath();
context.moveTo(x+radius, y);
context.lineTo(x+width-radius, y);
context.quadraticCurveTo(x+width, y, x+width, y+radius);
context.lineTo(x+width, y+height-radius);
context.quadraticCurveTo(x+width, y+height, x+width-radius, y+height);
context.lineTo(x+radius, y+height);
context.quadraticCurveTo(x, y+height, x, y+height-radius);
context.lineTo(x, y+radius);
context.quadraticCurveTo(x, y, x+radius, y);
context.closePath();
if(stroke) {
context.stroke();
}
if(fill) {
context.fill();
}
}; drawBoc();
</script>
</body>
</html>

最新文章

  1. Mssql迁移至Oracle 查询优化
  2. Android NDK环境搭建及调用JNI的简单步骤
  3. easyUI datagrid editor扩展dialog
  4. safari 回调中window.open无法执行
  5. android-tools-adb
  6. C++中debug和release的区别 . 转载
  7. 详解TCP和UDP数据段的首部格式
  8. JAVA文件中获取路径及WEB应用程序获取路径方法
  9. iOS证书详解--再转
  10. 使用XSLT实现Word下载
  11. SQL函数:用于将小写的数值翻译成大写的字符串
  12. 我使用过的Linux命令
  13. springMVC控制器,处理器,映射器,适配器
  14. java-IO流-其他流
  15. WINAPI方式在windows不同缩放比下取得正确的分辨率
  16. python的pyspider框架下爬虫
  17. urllib 学习二
  18. Illegalmixofcollations (utf8_unicode_ci,IMPLICIT) and (utf8_general_ci,IMPLICIT)foroperation &#39;= 连表查询排序规则问题
  19. Angular4 Ng 模块
  20. 机器学习【工具】:Numpy基础

热门文章

  1. Guass列主元、平方根法、追赶法求解方程组的C++实现
  2. Servlet学习笔记(八)—— 文件下载
  3. jqury-validate表单验证
  4. datatables对于某一特定的列进行自定义排序
  5. react新特性 react hooks
  6. firebug的应用
  7. C/C++实现正负数四舍五入
  8. (七)Java 变量类型
  9. Keys.BACKSPACE Keys.SPACE
  10. 每周一算法之六——KMP字符串匹配算法