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

应对createjs编写的一些小方法

时间:2016-12-24 19:37:35      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:函数   图片   color   height   style   var   map   nbsp   efi   

//必须得等图片加载完才可使用

//
处理图片大小的函数 function imgScale(bitmap,w,h){ var b=bitmap.getBounds(); bitmap.scaleX=w/b.width; bitmap.scaleY=h/b.height; } // 旋转图片 function rot(con,rot,x,y){ if(x==‘undefined‘)x=0; if(y==‘undefined‘)y=0; con.regX=x; con.regY=y; con.rotation=rot; }

 

应对createjs编写的一些小方法

标签:函数   图片   color   height   style   var   map   nbsp   efi   

原文地址:http://www.cnblogs.com/jweilan/p/6217850.html

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