3

我们对手风琴设置有一个基本的响应标签,如下所示:

// Based on: http://codepen.io/jacmaes/pen/miBKI

// initialise when dom is ready
$(document).ready(function() {

  // initialise if .accordion is on the page
  if ($('.accordion')[0]) {

    // desktop initialisation
    if ($(window).width() > 736) {
      $('.accordion-content:not(:first)').hide(); // hide all but first tab content on larger viewports
      $('.accordion-title:first-child').addClass('active'); // activate first tab

    } else { // mobile initialisation
      $('.accordion-content').hide(); // hide all content items on narrow viewports
    };


    // Click functions
    $('.accordion-title').on('click', function() {

      // desktop click
      if ($(window).width() > 736) {
        $('.accordion-content').hide(); // hide all content
        $(this).next().show().prev().addClass('active').siblings().removeClass('active');
        return false; // stop browser jumping when tabs clicked

        } else { // mobile click
          $(this).toggleClass('active').next().toggle();
          return false; // stop browser jumping when tabs clicked
      };
    });
  }
});

我们还使用 Snipcart,#!/cart如果购物车被激活,它会添加到任何 url 的末尾。当购物车关闭时,它会留#!/在 URL 上。

我们将如何让标签与浏览器的后退按钮一起使用 - 并让它们与 Snipcart 配合得很好?

4

0 回答 0