canvas教程

HTML5 Canvas,html5canvas

字号+ 作者:H5之家 来源:H5之家 2017-08-31 08:02 我要评论( )

HTML5 Canvas,html5canvas。HTML5 Canvas,html5canvas HTML5 Canvas Canvas , HTML 5 中引入它,可以做很多事情:画图、动画、游戏开发等等。本篇就主要讲解

<html>

<head>

<title>Canvas - 01</title>

<style>

body{

background:#dddddd;

}

 

#canvas{

margin:20px;

padding:20px;

background:#ffffff;

border:thin inset #aaaaaa;

width:600px;

height:300px;

}

</style>

</head>

<body>

<canvas>

Canvas not supported

</canvas>

<script type="text/javascript">

var canvas = document.getElementById("canvas"),

ctx = canvas.getContext("2d");

 

ctx.font='38pt Arial';

ctx.fillStyle='cornflowerblue';

ctx.strokeStyle='blue';

ctx.fillText("Hello Canvas", canvas.width/2 -150, canvas.height/2 + 15);

ctx.strokeText("Hello Canvas stroke", canvas.width/2 -200, canvas.height/2 + 80);

</script>

</body>

</html>

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • canvas教程 (四) 像素操作

    canvas教程 (四) 像素操作

    2017-08-31 08:01

  • Canvas教程 Canvas tutorial

    Canvas教程 Canvas tutorial

    2017-08-30 15:01

  • [教学视频]canvas黑板效果

    [教学视频]canvas黑板效果

    2017-08-30 14:02

  • Canvas骰子,

    Canvas骰子,

    2017-08-30 13:05

网友点评