首页 > 其他 > 详细

canvas字体样式

时间:2019-02-22 23:28:22      阅读:236      评论:0      收藏:0      [点我收藏+]
<canvas style="border: aqua solid 1px;" id=‘canvas‘ width=‘500‘ height=‘500‘></canvas>
<script>
    var canvas = document.getElementById(‘canvas‘);
    context = canvas.getContext(‘2d‘);

    context.font = ‘38pt Arial‘; //字体样式
    context.fillStyle = ‘red‘; //填充线样式
    context.strokeStyle=‘blue‘; //轮廓线样式

    context.fillText("hellocav",100,100); //填充线
    context.strokeText("hellocav",100,100); //轮廓线
</script>

 

canvas字体样式

原文:https://www.cnblogs.com/tongyuzhe/p/10421150.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!