我試圖使用鏈接滾動div
內的內容。 HTML是在這裏:如何使用錨點鏈接在div中滾動而不滾動主頁面
<header>
<div class="wrapper">
<a href="#" class="logo"><img src="/img/header.jpg" alt="Ace Land Surveying"></a>
</div>
<nav>
<div class="wrapper">
<ul>
<li><a href="">Home</a></li>
<li><a href="">About Us</a></li>
<li><a href="">Types of Surveys</a></li>
<li><a href="">About Us</a></li>
<li><a href="">Links</a></li>
<li><a href="">Request a Survey</a></li>
<li><a href="">Past Projects</a></li>
<li><a href="">Contact</a></li>
<li><a href="" class="last">SOQ</a></li>
</ul>
</div>
</nav>
</header>
<div class="wrapper">
<div class="content">
<div class="column left">
<ul class="survey-type-list">
<li><h2><a href="#type1">CLICK HERE</a></h2></li>
<li><h2><a href="#type2">CLICK HERE</a></h2></li>
<li><h2><a href="#type3">CLICK HERE</a></h2></li>
</ul>
</div>
<div class="column right" id="survey-column">
<div class="survey-type" id="type1">
<p> ... long text ... </p>
</div>
<div class="survey-type" id="type2">
<p> ... long text ... </p>
</div>
<div class="survey-type" id="type3">
<p> ... long text ... </p>
</div>
</div>
</div>
</div>
<footer>
<div class="footer-top">
<div class="wrapper"></div>
</div>
</footer>
和CSS:
header {
float: left;
width: 100%;
height: 200px;
}
.wrapper {
width: 90%;
margin: auto;
}
.content {
float: left;
width: 100%;
padding: 20px;
background: #02274b;
}
.column {
min-height: 500px;
padding: 20px;
border-radius: 20px;
color: #fff;
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), transparent);
background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
}
.column.left {
float: left;
width: 20%;
}
.column.right {
float: right;
width: 60%;
}
.survey-type-list li {
margin: 0 0 4px 0;
list-style: none;
}
.survey-type-list h2 {
font-size: 13px;
}
#survey-column {
overflow: hidden;
height: 460px;
}
.survey-type {
float: left;
width: 100%;
height: 460px;
}
的問題是,與div
裏面的內容整個頁面移動。
這裏是一個小提琴:
http://jsfiddle.net/q8a1s5wj/8/
我想在這裏等幾個線程,但沒有人能解決我的問題。
如何防止整個頁面滾動並使用我的錨鏈接在右列內滾動?
我希望能夠點擊左欄中的鏈接,看到右欄滾動但不移動整個頁面。
你可以使用JQuery庫,使用scrollTop函數:) –