Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Someon 知道一个插件可以获取带有表单/html 的浮动小部件,例如这个网站 http://teambox.com/ 当您向下滚动时,会出现“表单注册浮动栏”。
提前致谢!
为此,请使用 div,位置固定和顶部:0px 并在其中放置您想要的任何内容。隐藏 div 并使用以下内容在一定高度后显示。
$(document).scroll(function (e) { if (document.body.scrollTop >= 300) { $('#your-div').fadeIn(200); } else { $('#your-div').fadeOut(200); } });
没有理由使用插件。