我在这里有点绝望。我一直在阅读我在 Drupal.behaviours 上可以找到的所有内容,但显然还不够。我尝试使用无限滚动插件运行砌体网格,以将新图像附加到砌体。到目前为止,这工作正常。我想在我的网站上实现的下一件事是悬停效果(它显示图像上的信息)和后来的幻想框以显示更大尺寸的图像。
(function ($) {
Drupal.behaviors.views_fluidgrid = {
attach: function (context) {
$('.views-fluidgrid-wrapper:not(.views-fluidgrid-processed)', context).addClass('views-fluidgrid-processed').each(function () {
// hide items while loading
var $this = $(this).css({opacity: 0}),
id = $(this).attr('id'),
settings = Drupal.settings.viewsFluidGrid[id];
$this.imagesLoaded(function() {
// show items after .imagesLoaded()
$this.animate({opacity: 1});
$this.masonry({
//the masonry settings
});
});
//implement the function of jquery.infinitescroll.min.js
$this.infinitescroll({
//the infinitescroll settings
},
//show new items and attach behaviours in callback
function(newElems) {
var newItems = $(newElems).css({opacity: 0});
$(newItems).imagesLoaded(function() {
$(newItems).animate({opacity: 1});
$this.masonry('appended', newItems);
Drupal.attachBehaviours(newItems);
});
});
});
}
};
})(jQuery);
现在我读到如果我希望悬停事件也发生在新添加的内容上,我需要重新附加 Drupal.behaviours。
(function ($) {
Drupal.behaviors.imgOverlay = {
attach: function (context) {
var timeout;
$('.img_gallery').hover(function() {
$this = $(this);
timeout = setTimeout(change_opacity, 500);
}, reset_opacity);
function change_opacity() {
//set opacity to show the desired elements
}
function reset_opacity() {
clearTimeout(timeout);
//reset opacity to 0 on desired elements
}
}
};
})(jQuery)
我现在在哪里编写 Drupal.attachBehaviours() 以使其实际工作?还是有其他一些我只是没有看到 atm 的错误?我希望我写了这个问题,以便它可以理解,也许它也对其他人有所帮助,因为我经历过在 drupal 7 中没有真正的“官方”运行版本的这种组合。