Pop-up not showing (with magnific-popup)

前端 未结 3 1974
南方客
南方客 2020-12-18 15:45

I\'m trying to implement magnific popup on my website but for some reason my test image is not opening in popup mode. What could be the issue? Many thanks

&l         


        
3条回答
  •  萌比男神i
    2020-12-18 15:59

    Problem in your code:

     $(document).ready(function() {
        $('.image-popup-vertical-fit').magnificPopup({
          type: 'image',
          closeOnContentClick: true,
          mainClass: 'mfp-img-mobile',
          image: {
            verticalFit: true
          }
     });
    

    Your problem, you have two opening script tags: });

    The proper version of script:

    $(document).ready(function() {
        $('.image-popup-vertical-fit').magnificPopup({
          type: 'image',
          closeOnContentClick: true,
          mainClass: 'mfp-img-mobile',
          image: {
            verticalFit: true
          }
      });
    });
    

提交回复
热议问题