2014-11-18 3 views
0

그래서 내 상사 나 만 클릭 과정 제목에 따라 아코디언을 할 수 요청했다 심지어 일할만한 가치가 있니? 어떻게이 일을 끝낼 수 있습니까? 아코디언 섹션의 foundation.js 파일을 편집해야한다고 가정합니다.zurb 재단 아코디언 특정 클릭 가능

답변

0

옵션 자바 스크립트 구성 JS

$(document).foundation({ 
    accordion: { 
    // specify the class used for accordion panels 
    content_class: 'content', 
    // specify the class used for active (or open) accordion panels 
    active_class: 'active', 
    // allow multiple accordion panels to be active at the same time 
    multi_expand: false, 
    // allow accordion panels to be closed by clicking on their headers 
    // setting to false only closes accordion panels when another is opened 
    toggleable: true 
    } 
}); 
+0

덕분에 내가 기초 문서에서 이것을 보았다하지만 정말 문제를 해결 나던. – Omegaman