使用内容制作Wordpress Elementor推荐轮播高度比例

问题描述 投票:0回答:1

我有 Elementor 推荐轮播,但高度不随内容缩放,留下大量空白。

这是我想出的,但它只适用于按钮。当我滑动时,高度仍然会被窃听。

testimonialsAutoHeight('.elementor-swiper-button-next');
testimonialsAutoHeight('.elementor-swiper-button-prev');
  
function testimonialsAutoHeight(btn) {
      jQuery('body').on('click', btn, function() {
          
          var testimonial_height = jQuery('.swiper-slide-active .elementor-testimonial').height();
          testimonial_height = testimonial_height + 80;
          
          jQuery('[isMobileCarousel] .elementor-widget-container').css('height', testimonial_height);
      });
}
wordpress elementor
1个回答
0
投票

如果使用 Elementor 轮播,我还想找到一种将高度设置为自动的方法,以便高度随内容缩放

© www.soinside.com 2019 - 2024. All rights reserved.