當使用鼠標將導航欄中的按鈕懸停在而不單擊它們時,我想從頁面的第1部分切換到第2部分。懸停導航欄項目以更改爲下一部分
我該怎麼做?
這裏是代碼如下:
CSS:
.container {
overflow: hidden;
background-color: #FFFFFF;
font-family: Arial;
top:0;
left:0;padding: 5px;
}
.container a {
float: left;
font-size: 16px;
color: black;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.pull-right {
float: right;
}
#topNav {
margin-bottom:0;box-shadow: none;background:none;
}
body {
position: relative;
}
#section1 {padding-top:120px;height:500px;color: #fff; background-color: #1E88E5;}
#section2 {padding-top:120px;height:500px;color: #fff; background-color: #673ab7;}
#section3 {padding-top:120px;height:500px;color: #000000; background-color: #FFD2E9;}
#section4 {padding-top:120px;height:500px;color: #fff; background-color: #00bcd4;}
HTML:
<div class="navbar navbar-inverse navbar-static-top" id="topNav">
<div class="container">
<body data-spy="scroll" data-target=".navbar" data-offset="50">
<div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<a href="#section1">Toehold Switch</a>
<a href="#section2">Interlab</a>
<a href="#section3">Charaterization</a>
<a href="#section4">Program</a>
</ul>
</div>
這裏「更改爲第2部分」是什麼意思?你的意思是選擇/突出顯示?例如, –
,頁面從Toehold開關向下滾動至interlab –
您的html代碼看起來不正確,請檢查並更正! –