すべての scroll -y 要素の高さを取得したい スタイルがoverflow-y:scroll 私は次のコードを持っています:
<div class="team_comments">
<div class="col span_9">
<div id="timelineBoxContainer">
<ul id="timeline" class="clearfix">
<li>
<li>
<li style="display:none;">
<li style="display:none;">
<li style="display:none;">
</ul>
</div>
</div>
</div>
.team_comments {
height: 310px;
overflow-x: hidden;
overflow-y: scroll;
}
#timeline:before {
background: none repeat scroll 0 0 #8E9399;
bottom: 0;
content: "";
height: 99999px;
left: 50%;
margin-left: -1px;
margin-top: -10px;
position: absolute;
top: 10px;
width: 2px;
}
.clearfix:before, .clearfix:after {
content: "";
display: table;
}
.clearfix:after {
clear: both;
}
.clearfix:before, .clearfix:after {
content: "";
display: table;
}
#timeline {
list-style: none outside none;
margin: 0 auto;
overflow: hidden;
padding: 0 0 40px;
position: relative;
width: 100%;
}
.team_comments でスクロールバーの高さを取得するにはどうすればよいですか? (現在の位置ではありません!!!)? スクロールバーのゲートは、終了時にスクロールトップと同じ位置にある必要があると思います。ありがとう