<div class="row mobile-horizontial-scroll" data-equalizer data-options="equalize_on_stack: true">
<?php
// check if the repeater field has rows of data
if( have_rows('columns') ):
// loop through the rows of data
while ( have_rows('columns') ) : the_row(); ?>
<div class="column small-10 medium-4 margin-bottom-xsmall text-center">
<div class="panel-white medium-text-center column-padding" data-equalizer-watch>
<img src="<?php echo the_sub_field('image'); ?>" alt="" />
<h5 class="heading-orange heading-padding-small"><?php echo the_sub_field('title'); ?></h5>
<?php echo the_sub_field('description'); ?>
</div>
</div>
<?php endwhile;
else : ?>
<div class="column small-12">
<p>
No Data Found!, please enter data in the columns field in the admin
</p>
</div>
<?php endif; ?>
</div>
我正在尝试从基础上使均衡器。在文档中说明了有关使用此attr data-options =“ equalize_on_stack:true”的信息,我认为这会在移动设备上启用均衡器,但似乎失败了。
有谁能够使均衡器在移动设备上工作?
非常感谢
最佳答案
已经尝试过数据属性data-equalize-on
?
从文档;
数据均衡-中-表示插件应使高度相等的最小断点大小。
关于jquery - 如何在手机上启用均衡器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40351173/