gpt4 book ai didi

javascript - 用 jQuery 改变 $ 符号

转载 作者:行者123 更新时间:2023-11-29 22:08:14 27 4
gpt4 key购买 nike

好吧,我正试图让 Masonry 与无限滚动一起工作,我找到了官方的 appended 方法 ( http://desandro.github.io/masonry/demos/infinite-scroll.html ) 并试图让它在我的代码上工作。但我需要将一些 $ 更改为 jQuery 现在它可以作为砌体工作但 infinte 滚动仍然无法正常工作,我想知道我是否忘记了美元符号从我的代码更改为 jQuery请帮助我

<script >
jQuery(function(){

var $container = jQuery('ul.products');

$container.imagesLoaded(function(){
$container.masonry({
itemSelector: 'li.product',
columnWidth : 295,
isFitWidth: true,
gutterWidth : 2
});
});

$container.infinitescroll({
navSelector : '#page-nav-woo', // selector for the paged navigation
nextSelector : '.next', // selector for the NEXT link (to page 2)
itemSelector : 'li.product', // selector for all items you'll retrieve
loading: {
finishedMsg: 'No more pages to load.',
img: 'http://i.imgur.com/6RMhx.gif'
}
},
// trigger Masonry as a callback
function( newElements ) {
// hide new items while they are loading
var $newElems = jQuery( newElements ).css({ opacity: 0 });
// ensure that images load before adding to masonry layout
$newElems.imagesLoaded(function(){
// show elems now they're ready
$newElems.animate({ opacity: 1 });
$container.masonry( 'appended', $newElems, true );
});
}
);

});
</script>

最佳答案

好的,我的问题的解决方案是这样的:

1.我安装了wp-plugin

2.添加了回调部分:

 var $newElems = jQuery( newElements ).css({ opacity: 0 });
// ensure that images load before adding to masonry layout
$newElems.imagesLoaded(function(){
// show elems now they're ready
$newElems.animate({ opacity: 1 });
$container.append( $newElems ).masonry( 'appended', $newElems, true );
});

3.行为:砌体

它就像一个魅力!谢谢大家!

关于javascript - 用 jQuery 改变 $ 符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19709386/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com