0

我正在使用一个 wordpress 主题,该主题使用 jQuery Masonry 在调整浏览器大小时重新堆叠帖子缩略图。但是,我需要它们从右侧而不是左侧堆叠。我在 Masonry 网站上找到了这个"isOriginLeft": false选项,但似乎无法让它工作。

有什么建议吗?任何帮助将不胜感激,jQuery 不是我的强项。

该网站可以在这里找到:http: //brittonhack.com/new/

这是functions.js代码:

// masonry code 
$(document).ready(function() {
  $('#post-area').masonry({
    // options
    itemSelector : '.post',
    isOriginLeft: false,
    // options...
  isAnimated: true,
  animationOptions: {
    duration: 400,
    easing: 'linear',
    queue: false
  }

  });
});


// hover code for index  templates
$(document).ready(function() {

        $('#post-area .image').hover(
            function() {
                $(this).stop().fadeTo(300, 0.8);
            },
            function() {
                $(this).fadeTo(300, 1.0);
            }
        );  


});


// comment form values
$(document).ready(function(){
    $("#comment-form input").focus(function () {
        var origval = $(this).val();    
        $(this).val("");    
        //console.log(origval);
        $("#comment-form input").blur(function () {
            if($(this).val().length === 0 ) {
                $(this).val(origval);   
                origval = null;
            }else{
                origval = null;
            };  
        });
    });
});


// clear text area
$('textarea.comment-input').focus(function() {
   $(this).val('');
});

var container = document.querySelector('#post-area');
4

1 回答 1

0
$(document).ready(function(){
  $container.masonry({
    "isOriginLeft": false,
    "isOriginTop": true
  });
});
于 2014-04-24T15:34:18.717 回答