28 lines
		
	
	
		
			527 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			527 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<style>
 | 
						|
/* 全局的动态导航条样式 可以打包到css文件 不是很重要,也可以放到页面最后加载 */
 | 
						|
.navbar {
 | 
						|
    width: 100%;
 | 
						|
    background: none;
 | 
						|
    -webkit-transition: all .4s ease;
 | 
						|
    transition: all .4s ease;
 | 
						|
    position: fixed;
 | 
						|
    z-index: 9999;
 | 
						|
    top: 0
 | 
						|
}
 | 
						|
 | 
						|
.yya {
 | 
						|
    position: fixed;
 | 
						|
    left: 0;
 | 
						|
    top: 0;
 | 
						|
    background: rgba(0, 0, 0, .6);
 | 
						|
    box-shadow: 0 0 1px rgba(0,0,0,.15)
 | 
						|
}
 | 
						|
.gizle {
 | 
						|
    top: -100px;
 | 
						|
}
 | 
						|
 | 
						|
.sabit {
 | 
						|
    top: 0;
 | 
						|
    z-index: 9999;
 | 
						|
}
 | 
						|
</style> |