2016-01-19 47 views
0

显示DIV

.container{ 
 
    height: 700px; 
 
    width:100%; 
 
} 
 
.need-help-qu { 
 
    background-color:#042E49; 
 
    color:#ffffff; 
 
    padding:0px 10px; 
 
    font-size: 20px; 
 
    transition: all 0.4s ease-in-out; 
 
    -webkit-transition: all .8s ease; 
 
    -moz-transition: all .8s ease; 
 
    -ms-transition: all .8s ease; 
 
    -o-transition: all .8s ease; 
 
    transition: all .8s ease; 
 
    float:left; 
 
    height:28px; 
 
} 
 
.need-help { 
 
    float:left; 
 
    background-color:#06507D; 
 
    color:#ffffff; 
 
    padding:5px 10px; 
 
    overflow: hidden; 
 
} 
 
.need-help-full { 
 
    right:-95px; 
 
    position:fixed; 
 
    top:40%; 
 
    transition: all 0.4s ease-in-out; 
 
    -webkit-transition: all .8s ease; 
 
    -moz-transition: all .8s ease; 
 
    -ms-transition: all .8s ease; 
 
    -o-transition: all .8s ease; 
 
    transition: all .8s ease; 
 
} 
 
.need-help-full:hover { 
 
    right:0; 
 
}
<div class"container"> 
 
    Test sscroll 
 
</div> 
 
<div class="need-help-full"> 
 
    <a href="#"> 
 
    <span class="need-help-qu p-n-b">?</span> 
 
    <span class="need-help text-sm p-n-r">NEED A HELP</span> 
 
    </a> 
 
</div>

我有一个DIV的文本和 '?'在固定位置标记右侧中心。当用户悬停在'?'上时签署div从右到左出现转换(如社交图标)。它工作完美。

但是,当滚动条进入小屏幕时,整个div来滚动条,而不是靠近滚动条。

任何人都可以帮助我吗? 在此先感谢。

+1

你可以请出示你的代码的努力。 –

+0

分享您的代码 – Lakshya

+0

你好我的更新 –

回答

0

只需添加

.need-help-full { 
    z-index:-1; 
} 
+0

我做过,但该div淡出。 –

+0

调整该div的位置,也许在悬停你可以将z-index更改为2或其他东西 –

+0

位置必须修复,因为它是粘侧按钮。 –