如何添加条件

这个问题在这里已经有了答案:

  • 在jQuery中检测移动设备的最佳方式是什么? 49个答案

  • 您可以使用jQuery中的.width方法来确定窗口的宽度,并相应地更改对象属性。

    你可以像这样使用它:

    <script>
    if ($( window ).width() < 600) {
      $("#zoom_01").elevateZoom({
      gallery:'gallery_01',
      zoomEnabled: false,
      cursor: 'pointer',
      galleryActiveClass: 'active'
    } else {
      $("#zoom_01").elevateZoom({
        gallery:'gallery_01',
        zoomEnabled: true,
        cursor: 'pointer',
        galleryActiveClass: 'active'
    }
    </script>
    

    更可读的方法(至少对我而言):

    <script>
        $("#zoom_01").elevateZoom({
            gallery:'gallery_01',
            zoomEnabled: ( $(window).width() >= 600 ),
            cursor: 'pointer',
            galleryActiveClass: 'active'
        });
    </script>
    

    但要公平:阅读一个JavaScript教程或2,你可以自己想出来。

    链接地址: http://www.djcxy.com/p/84065.html

    上一篇: How can I add if condition

    下一篇: how to detect cell phone or mobile device?