在固定位置div

时间:2017-12-05 22:31:12

标签: javascript jquery html css bootstrap-4

我有一个网页,我想通过点击一个按钮(div和按钮都有固定位置)制作一个出现在屏幕右侧的div 我使用jQuery fadein / out

显示它

它工作正常,但当我点击按钮时,页面会自动滑到顶部

htmlCode:

<div class="fixedDiv">
    <div class="fixedDiv liveSupportFrame" style="background: #f8aa00;display: none" id="lsf">
        <div class="container" style="background-color:#d8d6d6;">
        ............
        </div>
    </div>

    <a class="btn btn-warning sideBtn" onclick="showOrHideLiveSupport();" role="button" href="#">FAQ</a>

CSS代码:

.fixedDiv{
position: fixed;
bottom: 25%;
right: 0em;
}
.fixedDiv .liveSupportFrame{
margin-right: 2em;
margin-bottom: 1em;
font-size:1.6vw;
bottom: 30%;
}

JS代码:

        var isLsfOpen = 0;
    function showOrHideLiveSupport() {
       if(!isLsfOpen){
           showLiveSupport()
       }
       else{
           hideLiveSupport()
       }
    }
    function showLiveSupport() {
        $('#lsf').fadeIn();

        isLsfOpen=true;
    }
    function hideLiveSupport() {
        $('#lsf').fadeOut();
        isLsfOpen=false;
    }

1 个答案:

答案 0 :(得分:3)

那是因为href="#"。在处理程序中使用event.preventDefault();