我正在尝试创建一个固定在屏幕左下方的按钮。我尝试在 JSFiddle 中进行设置以重新创建我正在尝试做的事情。
这是我的 HTML:
<div id="header">header
</div>
<div id="button">button
</div>
<div id="content">some content
</div>
<div id="footer">footer
</div>
和CSS:
#header,#footer{
background-color:red;
}
#content
{
height:2000px;
}
#footer
{
height:200px;
}
#button
{
background-color:gray;
width:100px;
height:100px;
position:fixed;
bottom:0;
left:0;
right:0;
}
我已经读过,我应该使用诸如 scrolltoFixed.js、lockfixed.js 之类的插件,但我的问题是我不知道如何使用,甚至不知道从哪里开始编辑 javascript。 这是一个小提琴
我希望按钮停止页脚所在的位置,并使其像停靠一样。