Angular2 ng-bootstrap Tabs和Accordion

时间:2016-09-02 07:06:17

标签: javascript css twitter-bootstrap angular ng-bootstrap

我正在使用Angular2和ng-bootstrap。我从here获取了NgbAccordion和NgbTabset示例。他们在功能上运作良好,但他们的风格是问题。单击时标签不会更改为活动状态,手风琴中的面板完全没有样式。可能是什么问题呢?

<ngb-accordion [closeOthers]="true" activeIds="1">
  <ngb-panel id="1" title="Simple">
    <template ngbPanelContent>
       ...
    </template>
  </ngb-panel>
  <ngb-panel id="2">
    <template ngbPanelTitle>
      <span>&#9733; <b>Fancy</b> title &#9733;</span>
    </template>
    <template ngbPanelContent>
       ...
    </template>
  </ngb-panel>
  <ngb-panel id="3" title="Disabled" [disabled]="true">
    <template ngbPanelContent>
      ...
    </template>
  </ngb-panel>
</ngb-accordion>

0 个答案:

没有答案