|  |  | @@ -15,7 +15,8 @@ Component({ | 
		
	
		
			
			|  |  |  | alphaData: null, | 
		
	
		
			
			|  |  |  | scaleData: null, | 
		
	
		
			
			|  |  |  | skewData: null, | 
		
	
		
			
			|  |  |  | matrixData: null | 
		
	
		
			
			|  |  |  | matrixData: null, | 
		
	
		
			
			|  |  |  | zindex:null, | 
		
	
		
			
			|  |  |  | }, | 
		
	
		
			
			|  |  |  | methods:{ | 
		
	
		
			
			|  |  |  | close:function(){ | 
		
	
	
		
			
				|  |  | @@ -33,14 +34,26 @@ Component({ | 
		
	
		
			
			|  |  |  | this.queueClick(); | 
		
	
		
			
			|  |  |  | }, | 
		
	
		
			
			|  |  |  | queueClick: function () { | 
		
	
		
			
			|  |  |  | let that = this; | 
		
	
		
			
			|  |  |  | var animation = wx.createAnimation({}); | 
		
	
		
			
			|  |  |  | animation.translate((this.data.widthScreen - 0), 0).scale(0).opacity(0.5).step({ duration: 3000 }) | 
		
	
		
			
			|  |  |  | this.setData({ queueData: animation.export() }) | 
		
	
		
			
			|  |  |  | animation.translate((this.data.widthScreen - 0), 0).scale(0).opacity(0.5).step({ duration: 1000 }) | 
		
	
		
			
			|  |  |  | that.setData({ queueData: animation.export()}) | 
		
	
		
			
			|  |  |  | setTimeout(function () { | 
		
	
		
			
			|  |  |  | that.setData({ | 
		
	
		
			
			|  |  |  | flag: true | 
		
	
		
			
			|  |  |  | }) | 
		
	
		
			
			|  |  |  | }, 1000) | 
		
	
		
			
			|  |  |  | }, | 
		
	
		
			
			|  |  |  | alphaClick: function (even) { | 
		
	
		
			
			|  |  |  | let that = this; | 
		
	
		
			
			|  |  |  | var animation = wx.createAnimation({}) | 
		
	
		
			
			|  |  |  | animation.opacity(0).step({ duration: 2000 }) | 
		
	
		
			
			|  |  |  | this.setData({ alphaData: animation.export() }) | 
		
	
		
			
			|  |  |  | animation.opacity(0).step({ duration: 1000 }) | 
		
	
		
			
			|  |  |  | that.setData({ alphaData: animation.export()}); | 
		
	
		
			
			|  |  |  | setTimeout(function(){ | 
		
	
		
			
			|  |  |  | that.setData({ | 
		
	
		
			
			|  |  |  | flag:true | 
		
	
		
			
			|  |  |  | }) | 
		
	
		
			
			|  |  |  | },1000) | 
		
	
		
			
			|  |  |  | } | 
		
	
		
			
			|  |  |  | }, | 
		
	
		
			
			|  |  |  | onLoad(){ | 
		
	
	
		
			
				|  |  | 
 |