我正在处理我的投资组合,我正在使用一个名为 Gridly 的 wordpress 主题,它使用masonry。我正在努力使帖子向右而不是向左对齐。我在这里遇到了一个选项,可以让我通过使用 "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'
});