我想在我的网站上添加一个自定义按钮,当用户滚动时它会滚动,我希望将它保持在最右边和中间位置。 我可以在http://www.addthis.com/看到我想要的一个很好的例子。 就像那些随着用户滚动向下滚动的栏。 任何帮助将不胜感激。
答案 0 :(得分:0)
这很简单。将position:fixed;
设为按钮。
.main{
height:1400px;
}
.btnFixed{
position:fixed;
top:200px;
}
<div class="main">
<button class="btnFixed">Button</button>
</div>