我觉得这个问题的答案会简单得令人尴尬,但它消耗了很多时间,我看不到解决方案。我正在做一个简单的无限滚动功能,需要脚本来识别后加载更多的内容窗口的新高度。该值始终与第一次加载时间相同。我基于编写了这段最新的代码,但它仍然不能工作。有什么想法?
var scrollFunction = function(){
var myTop = jQuery(window).scrollTop();
var myHeight = jQuery(window).height();
if (myTop >= myHeight){
$(
我有以下代码:
<div class="content">
<a href="/profile/Nat's Rare & Raw" class="link-name"><strong>Irene Natalia</strong></a>
Hooray! we'll proceed with the shipping and inform the tracking
我正在为jquery设计一个垂直滚动条插件。我的插件接受一个高度值作为选项,如果div高度超过给定的高度,滚动条将是可见的。现在的问题是我需要得到div内容的真实高度。
<div id="scroll">
Contents Here
</div>
jquery:
$.fn.vscrollbar = function (options) {
.
.
.
var contentHeight=this.contents().height() //that is not working correctly
目前,我正在使用引导、懒散负载和砖石来实现网格视图。
我面临几个问题:
使用lazyload会导致网格元素重叠。
页面没有正确的砖石布局加载。有一个3秒的延迟,当我可以看到整个砖石网格从左(不希望)到中心(期望)。
当我在jQuery标记中加载所有js库(jQuery、引导程序、砖石库和Lazyload库)时,第二个问题得到了解决。然而,这在很大程度上减缓了我的网站,我想在关闭<body>标签之前把它放在最后。
// Takes the gutter width from the bottom margin of .post
var gutter =
我需要抓取窗口的高度和jQuery中的滚动偏移量,但是我还没有在jQuery文档或谷歌中找到这一点。我90%确信有一种方法可以访问元素的高度和scrollTop (大概包括窗口),但我只是找不到具体的。我被下面的代码卡住了
var height = $(window).height();
var scrollTop =$(window).scrollTop();
我需要动态设置垂直布局的高度。我的页面有一个高度100 My的标题图像,高度26 My的标签是主要内容。我已经用App.controller.js编写了以下代码。不起作用
// tab_layt is the id of vertical layout var thisView = this.getView().byId("tab_layt"); var height = jQuery(window).height() - (jQuery(".header").height() + jQuery(".tab").height()); thisVi