作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经完成了这里的一些教程,但仍然无法解决我的问题,因此我发布了这个。
我想知道你是否可以告诉我如何获得我的 float 分享栏 @ http://www.patchworkoftips.com/blackberry-messenger-voip-voice-calls/1983/仅当用户向下滚动页面 100px 或文章中途时才显示。
这是我的分享栏 CSS:
#search_bar {
z-index: 1000;
position: fixed !important;
top: 0;
width: 1082px;
color: #FFF;
background: #333;
padding-top: 1px;
padding-bottom: 1px;
overflow: hidden;
margin-left: auto;
margin-right: auto;
}
抱歉,我无法粘贴共享栏代码,因为它一直在此处消失。
我是使用 javascript 和 jquery 的新手,因此非常感谢复制和粘贴解决方案。
最佳答案
$(window).on('scroll', function(){
if($(window).scrollTop() > 100){ // The '100' can be set to what ever pixel height you want
$('#search_bar').fadeIn('500'); // This shows the share bar
}else{
$('#search_bar').fadeOut('500'); // This hides the share bar
}
});
关于javascript - 如何延迟我的 float ShareBar 直到用户向下滚动页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13404529/
我已经完成了这里的一些教程,但仍然无法解决我的问题,因此我发布了这个。 我想知道你是否可以告诉我如何获得我的 float 分享栏 @ http://www.patchworkoftips.com/bl
我必须创建一个类似于此网站的社交分享侧边栏。你能建议如何实现吗?使用 Jquery 或任何东西? 引用。此页,http://www.chow.com/recipes/25677-beef-kalbi
我是一名优秀的程序员,十分优秀!