2
<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"私はモバイル上でイコライザを有効にすると思っていましたが、失敗したようです。モバイルでイコライザを有効にする方法
モバイルでイコライザを使用できる人はいますか?
感謝