新增手風琴樣式widget
This commit is contained in:
parent
6109b1735a
commit
96fddd87db
|
@ -0,0 +1,30 @@
|
||||||
|
<div class="widget-faqs widget2">
|
||||||
|
<h3 class="widget-title">
|
||||||
|
<span>{{widget-title}}</span>
|
||||||
|
</h3>
|
||||||
|
<ul class="list-unstyled" data-list="faqs" data-level="0">
|
||||||
|
<li class="widget-content">
|
||||||
|
<h4 class="widget-content-title-wrap">
|
||||||
|
<span class="widget-content-title">{{title}}</span>
|
||||||
|
<span data-list="statuses" data-level="1">
|
||||||
|
<span class="label status {{status-class}}">{{status}}</span>
|
||||||
|
</span>
|
||||||
|
</h4>
|
||||||
|
<section class="post">
|
||||||
|
<p>{{answer}}</p>
|
||||||
|
<div data-list="qa_files" data-level="1"><div><a href="{{file_url}}" target="_blank">{{file_title}}</a></div></div>
|
||||||
|
</section>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<script>
|
||||||
|
$('.widget-faqs.widget2[data-subpart-id="{{subpart-id}}"] .widget-content .widget-content-title-wrap').click(function(){
|
||||||
|
$('section.post').slideUp(200);
|
||||||
|
$(this).removeClass('open');
|
||||||
|
if($("+section",this).css("display")=="none"){
|
||||||
|
$("+section",this).slideDown(300);
|
||||||
|
$(this).addClass("open");
|
||||||
|
}
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
|
@ -12,8 +12,8 @@
|
||||||
"filename" : "faq_index2",
|
"filename" : "faq_index2",
|
||||||
"force_cover": "true",
|
"force_cover": "true",
|
||||||
"name" : {
|
"name" : {
|
||||||
"zh_tw" : "2. 手風琴列表 ( 模組標題, 問題 )",
|
"zh_tw" : "2. 手風琴列表 ( 模組標題, 問題, 答案 )",
|
||||||
"en" : "2. Accordion list ( widget-title, question )"
|
"en" : "2. Accordion list ( widget-title, question, answer )"
|
||||||
},
|
},
|
||||||
"thumbnail" : "thumb.png"
|
"thumbnail" : "thumb.png"
|
||||||
}
|
}
|
||||||
|
@ -26,6 +26,15 @@
|
||||||
"en" : "1. List (widget-title, question)"
|
"en" : "1. List (widget-title, question)"
|
||||||
},
|
},
|
||||||
"thumbnail" : "thumb.png"
|
"thumbnail" : "thumb.png"
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"filename" : "faq_widget2",
|
||||||
|
"name" : {
|
||||||
|
"zh_tw" : "2. 手風琴列表 ( 模組標題, 問題, 答案 )",
|
||||||
|
"en" : "2. Accordion list ( widget-title, question, answer )"
|
||||||
|
},
|
||||||
|
"thumbnail" : "thumb.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
Loading…
Reference in New Issue