- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用此脚本(遵循视频教程),但没有任何反应,也没有错误:
$(document).ready(function () {
var scrollTop = $(window).scrollTop();
var windowSize = $(window).height();
var appart = 50;
display(scrollTop, windowSize);
$(window).resize(function(){
var windowSize = $(window).height();
});
$(window).scroll(function(){
var scrollTop = $(window).scrollTop();
display(scrollTop, windowSize);
});
function display(scrollTop, windowSize){
$('.wp-post-image').each(function(){
var elemTop = $(this).offset().top;
if($(this).css('opacity') === 0 && (parseInt(elemTop) <= parseInt(scrollTop + windowSize - appart))){
$(this).fadeTo(2000,1);
}
});
}
});
它应该在页面上滚动时显示带有过渡的内容(如延迟加载)。
我正在使用 wordpress。
我真的不明白为什么它不起作用。谢谢。
最佳答案
取自 this page WordPress 法典:
The jQuery library included with WordPress is set to use the
noConflict()
mode to prevent compatibility issues with other JavaScript libraries that WordPress can use.In the
noConflict()
mode, the global$
shortcut for jQuery is not available, so you need to use:
jQuery(document).ready(function(){
jQuery(#somefunction) ...
});
However, if you would prefer to use the short
$
instead ofjQuery
, you can use the following wrapper around your code:
jQuery(document).ready(function($) {
// Inside of this function, $() will work as an alias for jQuery()
// and other libraries also using $ will not be accessible under this shortcut
});
希望有帮助。
关于javascript - jQuery 脚本已加载但没有任何反应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26291205/
我正在尝试将高斯模糊添加到场景中。我正在使用此GLSL着色器:。当您提供图像作为tDiffuse纹理时,它对图像起作用,但我正在尝试将其添加为后处理效果。我试图获取摄影机的renderTarget并将
我正在做一款天气应用程序,到目前为止还不错。现在,我想通过单击按钮来呈现一些额外的信息。我有一个5天的预报,然后想显示每一天的信息。我已经成功地过滤了数据,但无法获得要渲染的数据地图。以下是我的一些代
我正在做一款天气应用程序,到目前为止还不错。现在,我想通过单击按钮来呈现一些额外的信息。我有一个5天的预报,然后想显示每一天的信息。我已经成功地过滤了数据,但无法获得要渲染的数据地图。以下是我的一些代
我在全球安装了Create Reaction应用程序。然后我就跑了。NPX创建-反应-应用JSX。它安装了大约1460个包的所有包,但没有设置Public和src文件夹。在我的JSX文件夹中,只有1:
我是一名优秀的程序员,十分优秀!