码迷,mamicode.com
首页 > Web开发 > 详细

JS高级.

时间:2018-06-19 00:53:19      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:struct   填充   log   move   path   stroke   创建   设值   close   

##canvas(画布)
    fillStyle 填充色
    strokeStyle 画笔颜色
    lineWidth  设值线条宽度
    rect  创建矩形
    moveTo  起始点
    closePath  自动闭合
    lineTo  添加一个新点,然后从开始点到这个点的线条
    arc  用于画圆形或部分圆
    scale  缩小或放大
    rotate  旋转
##类
class(ES6新增)
    例:class People{
          constructor(name,age){
              this.name=name;
                 this.age=age;
                               }
                    intro(){
                      console.log("我的名字叫:"+this.name);
                            }
                    }        
    子类要继承父类的话用super(),写在第一行

JS高级.

标签:struct   填充   log   move   path   stroke   创建   设值   close   

原文地址:https://www.cnblogs.com/lyczzc/p/9196855.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!