1

私は自分のポートフォリオを作成していて、Masonry を使用する Gridly というワードプレスのテーマを使用しています。投稿が左ではなく右に揃うようにしようとしています。ここで、 "isOriginLeft": false を使用してそれを可能にするオプションに出くわしましたが、今では「Uncaught ReferenceError: Masonry is not defined」というエラーが発生し続けており、投稿を正しく配置することに近づいていません。 .

私のポートフォリオはこちら:brittonhack.com/new/

jQueryは私の得意分野ではないので、どんな助けでも大歓迎です。ありがとう!

エラーが発生し続けるコードは次のとおりです。

// masonry code 
$(document).ready(function() {
  $('#post-area').masonry({
    // options
    itemSelector : '.post',
    // 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');
var msnry = new Masonry( container, {
  itemSelector: '.post'
});
4

1 に答える 1