|  | @@ -44,13 +44,14 @@ export default defineComponent({
 | 
	
		
			
				|  |  |      })
 | 
	
		
			
				|  |  |      useEventListener(document, 'scroll', evt => {
 | 
	
		
			
				|  |  |        const { y } = useWindowScroll()
 | 
	
		
			
				|  |  | -      this.background = `rgba(255, 255, 255, ${(y.value - 40) / 100})`
 | 
	
		
			
				|  |  | -      if (y.value > 65) {
 | 
	
		
			
				|  |  | +      // this.background = `rgba(255, 255, 255, ${y.value / 100})`
 | 
	
		
			
				|  |  | +      // console.log(y.value)
 | 
	
		
			
				|  |  | +      if (y.value > 142) {
 | 
	
		
			
				|  |  |          this.headColor = '#000'
 | 
	
		
			
				|  |  | -        // this.background = '#fff'
 | 
	
		
			
				|  |  | +        this.background = '#fff'
 | 
	
		
			
				|  |  |          this.backIconColor = 'black'
 | 
	
		
			
				|  |  |        } else {
 | 
	
		
			
				|  |  | -        // this.background = 'transparent'
 | 
	
		
			
				|  |  | +        this.background = 'transparent'
 | 
	
		
			
				|  |  |          this.headColor = '#fff'
 | 
	
		
			
				|  |  |          this.backIconColor = 'white'
 | 
	
		
			
				|  |  |        }
 |