向下滚动缩小导航栏,不使用Javascript

时间:2017-02-01 03:07:21

标签: html css

当访问者向下滚动并且不使用Javascipt时,如何在页面顶部获得缩小的导航栏?

例如,这是here完成的。它可以从宽到窄地逐渐收缩,而不是像那个站点那样连续收缩。

(我不是这个副本,因为我特意要求不使用Javascript就可以完成。)

2 个答案:

答案 0 :(得分:1)

遗憾的是,如果没有JavaScript,你所要求的是完全不可能的,因为CSS无法知道用户何时向下滚动页面。

但是, 可以根据纯CSS中的光标位置(几乎相同的东西)缩小标题。见李斯特先生的this answer

希望这有帮助!

答案 1 :(得分:0)

我这会帮助你

/*Strip the ul of padding and list styling*/
ul {
	list-style-type:none;
	margin:0;
	padding:0;
	position: absolute;
}

/*Create a horizontal list with spacing*/
li {
	display:inline-block;
	float: left;
	margin-right: 1px;
}

/*Style for menu links*/
li a {
	display:block;
	min-width:140px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #fff;
	background: #2f3036;
	text-decoration: none;
}

/*Hover state for top level links*/
li:hover a {
	background: #19c589;
}

/*Make dropdown links vertical*/
li ul li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
/*Style 'show menu' label button and hide it by default*/
.show-menu {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #fff;
	background: #19c589;
	text-align: center;
	padding: 10px 0;
	display: none;
}

/*Hide checkbox*/
input[type=checkbox]{
    display: none;
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
    display: block;
}


/*Responsive Styles*/

@media screen and (max-width : 760px){
	/*Make dropdown links appear inline*/
	ul {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	li {
		margin-bottom: 1px;
	}
	/*Make all menu links full width*/
	ul li, li a {
		width: 100%;
	}
	/*Display 'show menu' link*/
	.show-menu {
		display:block;
	}
}
	<label for="show-menu" class="show-menu">Show Menu</label>
	<input type="checkbox" id="show-menu" role="button">
		<ul id="menu">
		<li><a href="#">Home</a></li>
		<li><a href="#">About</a></li>
		<li><a href="#">Portfolio </a></li>
		<li><a href="#">News</a></li>
		<li><a href="#">Contact</a></li>
	</nav>