jQuery滑块左右按钮,firefox不起作用

时间:2015-01-06 21:46:21

标签: jquery wordpress-theming wordpress jquery-ui-slider

我做了这个wordpress主题,水平显示循环: http://zarifnyc.com/category/news/

<Script>
var curx = $('#blog').css(''); 
if(curx <= 0) {hide('#leftbutton')} else {show('#leftbutton')}
if(curx >= 25000) {hide('#rightbutton')} else {show('#rightbutton')}

$(function() 
{
  $('#rightbutton').click(function() {
$('#blogbox').animate({"left" : '-=1070px'});
return false;
});
  $('#leftbutton').click(function() {
$('#blogbox').animate({"left" : '+=1070px'});
return false;
});
  });
</script>

...直到我尝试添加&#34; if&#34;声明隐藏第一个帖子上的左键,右上一个(或使用无限滚动)。

&#39;刚刚开始学习jQuery,所以任何帮助都会受到赞赏,谢谢!

0 个答案:

没有答案