Ext学习之3_类Element和Fx2

/**
 * highlight([String color],[Object options]): 
 * 						根据设置的颜色高亮显示Element对象,然后渐隐为原始颜色,默认
 * 						情况下,高亮显示的背景色为黄色
 * 参数:
 *   color: 起始颜色
 *   options: 选项配置
 */
Ext.onReady(function(){
	Ext.get("a1").applyStyles({
		position : "absolute",
		top : 200,
		left : 200,
		backgroundColor : "red",
		width : 100,
		height : 100
	}).highlight("0000ff"/**起始颜色*/,{
		attr: "background-color",/**我们改变的是背景色*/
		duration: 10,/**动画持续时间*/
		endColor: "ff0000" /**结束颜色*/
	});
});
/**
 * 如果把attr属性设置成color,改变的是文字颜色,endColor的颜色值不能形如red之类的英文单词,只能是16进制,
 * 起始颜色为蓝色,终止颜色为红色,中间的渐变有ext完成
 */

 

你可能感兴趣的:(ext)