Jquery 如何在手机上启用均衡器 “alt=”“/>

Jquery 如何在手机上启用均衡器 “alt=”“/>,jquery,zurb-foundation,Jquery,Zurb Foundation,找不到数据!请在“管理”对话框的“列”字段中输入数据 我试图从基础上创建均衡器。在文档中提到了使用这个AtTo数据选项=“均衡器OnOnStApp:Trand”,我认为这将使移动均衡器看起来好像失败了。 有人能让均衡器在手机上工作吗 非常感谢已经在上尝试了数据属性数据均衡 从文件中 data equalize on-medium-表示插件应均衡高度的最小断点大小 <div class="row mobile-horizontial-scroll" data-equalizer d

找不到数据!请在“管理”对话框的“列”字段中输入数据

我试图从基础上创建均衡器。在文档中提到了使用这个AtTo数据选项=“均衡器OnOnStApp:Trand”,我认为这将使移动均衡器看起来好像失败了。 有人能让均衡器在手机上工作吗


非常感谢

已经在上尝试了数据属性
数据均衡

从文件中

data equalize on-medium-表示插件应均衡高度的最小断点大小

   <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>