有没有办法让 Foundation Accordion 水平工作?

Is there a way to make the Foundation Accordion work Horizontaly?

我正在寻找一种使 Foundation 手风琴横向工作的方法,就像 zAccordion http://www.armagost.com/zaccordion/

这是在基金会论坛上提出的,http://codepen.io/rafibomb/pen/ByEPJP was provided as an answer. You can see the full thread with examples here: http://foundation.zurb.com/forum/posts/23829-horizontal-accordion

他们在该行中添加了 class 个 accordion 并以这种方式调整了 SCSS:

.row.accordion {
  transform: rotate(90deg);
  transform-origin: 35%;
  .content {
    min-height: 450px;
    transform: rotate(-90deg);
  }
}