一个非常基本的设置:title-shim-container。垫片确保在页面加载时,容器保持在窗口底部,以便为后台的视频直播腾出空间。
当容器向上滚动并点击标题时,标题将被推离屏幕并在其原始位置下降。容器由jQuery Isotope 插件相对定位;这是无法改变的。
我在这里得到的第一部分。但是如何让第二部分工作呢?我只有这么远:(
jQuery.event.add(window, "load", shimming);
jQuery.event.add(window, "resize", shimming);
function shimming() {
var wheight = $(window).height();
$('#shim').css('height', (wheight - 63));
} // this part up to here works
$(window).bind("load resize scroll", function () {
var wheight = $(window).height();
console.log(wheight);
var wscrolled = $(window).scrollTop();
console.log(wscrolled);
我在以前的帖子中要求这个没有提供小提琴,所以我最好删除那些帖子?
谢谢你的建议...