textField - shinku/miki-es6 GitHub Wiki

textField

extends DisplayObject
miki中的文本 ,继承自DisplayObject,意味着他也可以调用DisplayObject公开的所有属性和方法,监听DisplayObject公开的所有事件 .其中addChild和removeChild可以被调用,但是不会起到任何作用

属性们

  • spacebetween:number
    字符的间距
  • linebetween:number
    字符的行间距
  • fontFamily:string
    设置字体
  • fontSize:number
    设置字号
  • text:string
    设置文本
  • autoWrap:boolean
    设置是否自动换行
  • textColor:string
    设置本文本的文本颜色。
   this.txt=new textField();
   this.txt.x=128;
   this.txt.y=98;
   this.txt.textColor='#dfcc84';
   this.txt.fontSize=25;
   this.txt.text='hello,miki';
   stage.addChild(this.txt);

textfield 也可以作为mask对象,让显示区域只显示对应的文字区域的图像。