我在页面上设置了自动寻呼机以允许无限滚动。我还使用jQuery来改变图像悬停时的不透明度。但是,动画仅适用于第一页,而不是自动加载的连续页面。知道为什么会这样吗?或者有什么方法可以解决这个问题吗?感谢。
这是我用于图像和自动寻呼机的代码:
<script type="text/javascript">
$(document).ready(function(){
$(".post").animate({opacity:.8});
$(".post").hover(function(){$(this).stop().animate({opacity:1}, "fast");}, function(){
$(this).stop().animate({opacity:.8}, "slow");
});
});
</script>
<script type="text/javascript" src="http://static.tumblr.com/q0etgkr/J5bl3lkz1/tumblrautopagernopage.js"></script>
答案 0 :(得分:0)
您的代码在哪里?我们不是魔术师......
为了弄清楚你在这里说的是什么,我认为你的代码很可能不适用于较新的,自动分页的代码。看看你是否可以将更多动态代码添加到系统中,并在自动寻呼机加载图像后应用它。