Divs随时出现用户滚动 - 不在视图中时

时间:2017-08-29 19:00:47

标签: jquery html css scroll

所以,我正在我的投资组合网站上工作,我的条形图遇到了一些问题。我试图设置它以便在滚动视图时出现。到目前为止,我已经能够实现正常工作的效果,但是一旦用户滚动它就会这样做 - 而不是在它进入视图时。我做错了什么?另外,我应该注意我在我的网站上使用了一个名为LiveQuery的插件。

HTML:

<div id="section-three">
        <div id="web-head">
            <h2>Web Development</h2>
            <br>
            <p><i>Code, code, and more code!</i></p>
        </div>
        <div id="web-graph">
            <div id="html-bar">
                <p>HTML</p>
                <div id="html">
                </div>
                <div class="clear"></div>
            </div>

            <div id="css-bar">
                <p>CSS</p>
                <div id="css">
                </div>
                <div class="clear"></div>
            </div>

            <div id="jq-bar">
                <p>JQuery/JavaScript</p>
                <div id="jq">
                </div>
                <div class="clear"></div>
            </div>
        </div>
    </div>

CSS:

    /*SECTION THREE CODE*/

#section-three {
    min-width: 100vw;
    width: 100%;
    min-height: 500px;
    height: 100%;
    background-color: #000000;
    overflow: hidden;
    text-align: center;
}

#web-head {
    max-width: 70vw;
    width: 100%;
    min-height: 100px;
    height: 100%;
    margin-top: 2%;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

#web-head h2 {
    font-weight: normal;
}

#web-head p {
    color: #808080;
}

#web-graph {
    min-width: 85vw;
    width: 100%;
    min-height: 300px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

#web-graph p {
    float: left;
    max-width: 14vw;
    width: 100%;
    min-height: 50px;
    height: 100%;
    margin-left: 2%;
    margin-top: 37.5px;
    color: white;
}

#html-bar {
    flex: 1;
}

#html {
    min-height: 50px;
    height: 100%;
    max-width: 70vw;
    width: 0;
    float: left;
    margin-top: 25px;
}

#html.active {
    background-color: #808080;
    transition: all ease-in-out 1s;
    min-height: 50px;
    height: 100%;
    max-width: 70vw;
    width: 70%;
    float: left;
    margin-top: 25px;
}

#css-bar {
    flex: 1;
}

#css {
    min-height: 50px;
    height: 100%;
    max-width: 70vw;
    width: 0;
    float: left;
    margin-top: 25px;
}

#css.active {
    background-color: #808080;
    transition: all ease-in-out 1s;
    min-height: 50px;
    height: 100%;
    max-width: 65vw;
    width: 65%;
    float: left;
    margin-top: 25px;
}

#jq-bar {
    flex: 1;
}

#jq {
    min-height: 50px;
    height: 100%;
    max-width: 70vw;
    width: 0;
    float: left;
    margin-top: 25px;
}

#jq.active {
    background-color: #808080;
    transition: all ease-in-out 1s;
    min-height: 40px;
    height: 100%;
    max-width: 35vw;
    width: 35%;
    float: left;
    margin-top: 25px;
}

JQuery的:

    $(document).ready(function () {
    $('#jq-bar:visible').livequery(function () {
        $('#html').addClass('active');
        $('#css').addClass('active');
        $('#jq').addClass('active');
    })             
});

我还应该注意到,我曾经尝试将它链接到每当一个div或具有特定ID或类的项目显示时,它将触发该功能,但不幸的是它仍然没有工作。如果有人能够指出我正确的方向,我将非常感激。谢谢!

1 个答案:

答案 0 :(得分:0)

您的选择器会立即选择页面加载时的元素:

 $(document).ready(function () {
    $('#jq-bar:visible')

W3C无耻地被盗:

  

定义和用法:visible选择器选择每个元素   目前可见。

     

可见元素是不是的元素:
  设为显示:无
  表单元素类型=“隐藏”
  宽度和高度设置为0
  隐藏的父元素(这也隐藏子元素)

如果您正在尝试跟踪某些内容何时可见,您可以尝试使用滚动顶部来初始化类。