为了账号安全,请及时绑定邮箱和手机立即绑定

求大牛教,关于滚动监视器的问题!做不出百度百科的效果(不指百度百科的外观样式)!

【问题已解决√:《position属性absolute与relative 详解》:http://www.cnblogs.com/jenry/archive/2007/07/15/818660.html】

问题一:滚动监视器使用时为什么,导航栏的激活效果不与标题出现的位置同步,做不到百度百科的效果!

问题二:如果[滚动监视器的代码在整个网页中位于后半段位置],在滚动过程中会出现“跳跃”,就是激活的效果只在导航的第一个链接(@fat)和最后一个链接(three)上跳跃显示。

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>JS for Bootstrap</title>
    <link rel="stylesheet" href="http://cdn.bootcss.com/bootstrap/3.1.1/css/bootstrap.css">
        <!--[if lt IE 9]>
            <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
            <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
        <![endif]-->
</head>
<style type="text/css">
    .scrollspy-content{
        height:300px;
        font-size:24px;
        overflow:auto;    
    }
</style>
<body>
<div class="container">
        <h2>滚动监视器</h2>
            <div class="scrollspy">
                <nav class="navbar navbar-default" role="navigation" id="navbar-menu1">
                    <div class="container-fluid">
                        <div class="navbar-header">
                            <a href="#" class="navbar-brand">慕课网</a>
                            <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-content">
                                <span class="sr-only">Toggle Navigation</span>
                                <span></span>
                                <span></span>
                                <span></span>
                            </button>
                        </div>
                        <div class="collapse navbar-collapse navbar-content">
                            <ul class="nav navbar-nav">
                                <li><a href="#fat">@fat</a></li>
                                <li><a href="#mdo">@mdo</a></li>
                                <li class="dropdown">
                                    <a href="#" role="button" data-toggle="dropdown">Dropdown<span></span></a>
                                    <ul class="dropdown-menu" role="menu">
                                        <li><a href="#one">one</a></li>
                                        <li><a href="#two">two</a></li>
                                        <li><a href="#three">three</a></li>
                                    </ul>
                                </li>
                            </ul>
                        </div>
                    </div>
                </nav>
                <div class="scrollspy-content" data-offset="0" data-target="#navbar-menu1" data-spy="scroll">
                    <h4 id="fat">@fat</h4>
                      <p>Ad leggings keytar, brunch id art party dolor labore. Pitchfork yr enim lo-fi before they sold out qui. Tumblr farm-to-table bicycle rights whatever. Anim keffiyeh carles cardigan. Velit seitan mcsweeney's photo booth 3 wolf moon irure. Cosby sweater lomo jean shorts, williamsburg hoodie minim qui you probably haven't heard of them et cardigan trust fund culpa biodiesel wes anderson aesthetic. Nihil tattooed accusamus, cred irony biodiesel keffiyeh artisan ullamco consequat.</p>
                      <h4 id="mdo">@mdo</h4>
                      <p>Veniam marfa mustache skateboard, adipisicing fugiat velit pitchfork beard. Freegan beard aliqua cupidatat mcsweeney's vero. Cupidatat four loko nisi, ea helvetica nulla carles. Tattooed cosby sweater food truck, mcsweeney's quis non freegan vinyl. Lo-fi wes anderson +1 sartorial. Carles non aesthetic exercitation quis gentrify. Brooklyn adipisicing craft beer vice keytar deserunt.</p>
                      <h4 id="one">one</h4>
                      <p>Occaecat commodo aliqua delectus. Fap craft beer deserunt skateboard ea. Lomo bicycle rights adipisicing banh mi, velit ea sunt next level locavore single-origin coffee in magna veniam. High life id vinyl, echo park consequat quis aliquip banh mi pitchfork. Vero VHS est adipisicing. Consectetur nisi DIY minim messenger bag. Cred ex in, sustainable delectus consectetur fanny pack iphone.</p>
                      <h4 id="two">two</h4>
                      <p>In incididunt echo park, officia deserunt mcsweeney's proident master cleanse thundercats sapiente veniam. Excepteur VHS elit, proident shoreditch +1 biodiesel laborum craft beer. Single-origin coffee wayfarers irure four loko, cupidatat terry richardson master cleanse. Assumenda you probably haven't heard of them art party fanny pack, tattooed nulla cardigan tempor ad. Proident wolf nesciunt sartorial keffiyeh eu banh mi sustainable. Elit wolf voluptate, lo-fi ea portland before they sold out four loko. Locavore enim nostrud mlkshk brooklyn nesciunt.</p>
                      <h4 id="three">three</h4>
                      <p>Ad leggings keytar, brunch id art party dolor labore. Pitchfork yr enim lo-fi before they sold out qui. Tumblr farm-to-table bicycle rights whatever. Anim keffiyeh carles cardigan. Velit seitan mcsweeney's photo booth 3 wolf moon irure. Cosby sweater lomo jean shorts, williamsburg hoodie minim qui you probably haven't heard of them et cardigan trust fund culpa biodiesel wes anderson aesthetic. Nihil tattooed accusamus, cred irony biodiesel keffiyeh artisan ullamco consequat.</p>
                </div>
            </div>
</div>
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.js"></script>
<!--<script src="../js/3.1.1/bootstrap.min.js"></script>-->
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
</body>
</html>


正在回答

1 回答

css中加个position:relative;试试~

1 回复 有任何疑惑可以回复我~
#1

Fire4x 提问者

ok了!!
2015-02-10 回复 有任何疑惑可以回复我~
#2

姑娘小小

加了position:relative,全屏后还是会有类似的问题
2016-06-07 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

求大牛教,关于滚动监视器的问题!做不出百度百科的效果(不指百度百科的外观样式)!

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信