- 1、本文档共80页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
[HTML5资料]Canvas教程.
HTML5资料Canvas教程canvas是一个新的用于通过脚本(通常是JavaScript)绘图的HTML元素。例如,他可以用于绘图、制作图片的组合或者简单的动画(当然并不那么简单)。It can for instance be used to draw graphs, make photo compositions or do simple (and not so simple) animations.基本用法Basic usage?canvas元素Lets start this tutorial by looking at the canvas element itself.?让我们从canvas元素的定义开始吧。canvas id=tutorial width=150 height=150/canvasThis looks a lot like the img element, the only difference is that it doesnt have the src and alt attributes. canvas看起来很像img,唯一不同就是它不含 src 和 alt 属性。The canvas element has only two attributes - width and height. These are both optional and can also be set using DOM properties or CSS rules.它只有两个属性,width 和 height,两个都是可选的,并且都可以 DOM 或者 CSS 来设置。 When no width and height attributes are specified, the canvas will initially be 300 pixels wide and 150 pixels high.如果不指定width 和 height,默认的是宽300像素,高150像素。The element can be sized arbitrarily by CSS, but during rendering the image is scaled to fit its layout size.?? (If your? renderings seem distorted, try specifying your width and height attributes explicitly in the canvas attributes, and not with CSS.)虽然可以通过 CSS 来调整canvas的大小,但渲染图像会缩放来适应布局的(如果你发现渲染结果看上去变形了,不必一味依赖CSS,可以尝试显式指定canvas的width 和 height 属性值)。The id attribute isnt specific to the canvas element but is one of default HTML attributes which can be applied to (almost) every HTML element (like class for instance). Its always a good idea to supply an id because this makes it much easier to identify it in our script.id? 属性不是canvas专享的,就像标准的HTLM标签一样,任何一个HTML元素都可以指定其 id 值。一般,为元素指定 id 是个不错的主意,这样使得在脚本中应用更加方便。The canvas element can be styled just like any normal image (margin, border, background, etc). These rules however dont affect the actual drawing on the canvas. Well see how this is done later in this tutorial. When no styling rules are applied to the canvas it will initially be fully transparent. canvas元素可以像普通图片一样指定其样式(边距,边框,背景等等)。然而这些样式并不会对canvas实际生成的图像产生什么影响。下面我们会看到如何应用样式。如果不指定样式,canvas默认是全透明的。替用内容Because the canvas element
您可能关注的文档
- ZXM气动薄膜套筒调节阀..doc
- ZXQ阀门定位器..doc
- zx结构化融资信托合同..doc
- ZY45型压缩氧自救器..doc
- ZYL2000型全自动塑料铅笔生产流水线..doc
- ZYX45隔绝式压缩氧气自救器..doc
- ZYZDB—02基桩竖向抗压静载荷试验..doc
- ZZ薪酬设计方案..doc
- ZZYP自力式压力调节阀..doc
- ZZWP型自力式温度调节阀..doc
- 第三单元解决问题的策略 三年级下册数学高频考点重难点讲义(苏教版)(1).docx
- 4.4 解比例 数学六年级下册同步培优讲义(苏教版).docx
- 第四单元《根据方向与距离确定物体位置》(教案)五年级下册数学青岛版.docx
- (奥数典型题)第三讲 分解质因数 五年级下册数学思维拓展提升讲义(人教版).docx
- 2.2:2、5、3的倍数-人教版五年级数学下册第二单元:因数和倍数.docx
- 第六单元正比例和反比例 六年级下册数学高频考点重难点讲义(苏教版).docx
- 第二单元除数是一位数的除法 三年级下册数学高频考点重难点讲义(人教版).docx
- 第二单元-认识三角形和四边形 四年级数学下册提升(北师大版).docx
- 第一单元观察物体(三)五年级下册数学高频考点重难点讲义(人教版).docx
- 第九单元 数学广角—推理 二年级数学下册重难点知识点(人教版).docx
文档评论(0)