嗨,我为图片库使用了巨大的弹出窗口,我想在放大图像时隐藏div,并在缩小图像时再次显示它。这是我的代码:

 $('.gallery-item').magnificPopup({
        type: 'image',
        gallery:{
          enabled:true
        },
        mainClass: 'mfp-with-zoom', // this class is for CSS animation below

        zoom: {
        enabled: true, // By default it's false, so don't forget to enable it

        duration: 300, // duration of the effect, in milliseconds
        easing: 'ease-in-out',


         // CSS transition easing function

        // The "opener" function should return the element from which popup will be zoomed in
        // and to which popup will be scaled down
        // By defailt it looks for an image tag:
        opener: function(openerElement) {
          // openerElement is the element on which popup was initialized, in this case its <a> tag
         // you don't need to add "opener" option if this code matches your needs, it's defailt one.
         return openerElement.is('img') ? openerElement : openerElement.find('img');
       }
      }

});


我应该在哪里放置hide()和show()函数,以便它们在同时弹出时弹出。

最佳答案

不要为此使用CSS,jQuery内置了用于显示和隐藏元素的函数。

open: function(){
  $(".main").hide();
},
  close: function(){
  $(".hidden-div").show();
}

10-07 21:41