Terry.Li-彬

          虛其心,可解天下之問(wèn);專其心,可治天下之學(xué);靜其心,可悟天下之理;恒其心,可成天下之業(yè)。

            BlogJava :: 首頁(yè) :: 新隨筆 :: 聯(lián)系 :: 聚合  :: 管理 ::
            143 隨筆 :: 344 文章 :: 130 評(píng)論 :: 0 Trackbacks

          回顧:Bootstrap組件豐富同時(shí)具有良好可擴(kuò)展性,能夠很好地應(yīng)用在生產(chǎn)環(huán)境。這些組件包括按鈕(Button),導(dǎo)航(Navigation),縮略圖(?thumbnails),提醒(Alert),進(jìn)度條(progress bar)等,能夠很好減少前端工程師的代碼量,實(shí)現(xiàn)更加豐富充實(shí)的頁(yè)面。

          ? ? ? Bootstrap作為一套良好的前端工具,要實(shí)現(xiàn)現(xiàn)代的動(dòng)態(tài)頁(yè)面效果,javascript插件是必不可少的。它提供了12個(gè)基于JQuery類庫(kù)的插件,包括模態(tài)窗口(Modals),滾動(dòng)監(jiān)控(Scrollspy),標(biāo)簽效果(Tabs),提示效果(Tooltip),“泡芙”效果(popovers),警告區(qū)域(Alerts),折疊效果(Collapse),旋轉(zhuǎn)木馬(carousel),輸入提示(typeahead)等.這些內(nèi)容會(huì)分作兩講來(lái)闡述,本講將深入講解modals等插件。在bootstrap中所有涉及動(dòng)畫(huà)效果的javascript插件,都必須先引用Transitions JS,包括modals,alerts等來(lái)實(shí)現(xiàn)淡出效果。

          ? ??1.模態(tài)窗口(Modals) ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?

          ? ? ? ??模態(tài)窗口是指除非采取有效的關(guān)閉手段,用戶的鼠標(biāo)焦點(diǎn)或者輸入光標(biāo)將一直停留在其上的窗口(對(duì)話框).Bootstrap對(duì)于模態(tài)窗口的實(shí)現(xiàn)十分精簡(jiǎn)靈活,用戶只需要使用少量的代碼和智能的默認(rèn)設(shè)置,即能實(shí)現(xiàn)傳統(tǒng)實(shí)現(xiàn)傳統(tǒng)的Javascript效果的模態(tài)窗口。默認(rèn)的Bootstrap模態(tài)窗口效果,包括對(duì)話框從屏幕上方落下,屏幕其他區(qū)域變暗淡,模態(tài)窗口的隱藏等。這些效果分別對(duì)應(yīng).modal .fade .hide 這些類。我們可以不用寫(xiě)任何javascript代碼來(lái)實(shí)現(xiàn)Modal效果,只需要將?data-toggle="modal"?放置于在觸發(fā)控制要素(如按鈕,超鏈接等),并指定它的Modal窗口的ID鏈接(data-target="#mymodal",href="#mymodal")。當(dāng)這些控制要素被觸發(fā)的時(shí)候,modal窗口就會(huì)出現(xiàn)了。模式窗口的內(nèi)容可以非常豐富,這些內(nèi)容都需要包括在modal的div內(nèi),并可以定義modal窗口的頭部,內(nèi)容和腳部。

          ? ? ? ?如果使用Jquery調(diào)用Modal,也只需要一行javascript代碼,

          $('#myModal').modal(options)

          ?

          ? ? ? ? 該選項(xiàng)包括backdrop,keyboard,show三項(xiàng),主要控制模態(tài)窗口的動(dòng)作。Modal的方法主要包括show,hide,toogle等,主要用于模態(tài)窗口的狀態(tài)控制。Modal的觸發(fā)事件包括shown,hiden等,主要用于控制模態(tài)窗口的功能觸發(fā)控制。具體效果可以到官方文檔的該處嘗試一下,點(diǎn)擊Launch demo modal按鈕即可。Modal的實(shí)現(xiàn)如圖4-1所示:

          圖4-1 模態(tài)窗口(Modal)

          代碼如下:

          <!-- rating?modal's?content -->
          ????????????
          < div? id ="ratyService" ?class ="modal?hide?fade" >
          ????????????
          ????????????
          < div? class ="modal-header" >
          ??????????????
          < button? type ="button" ?class ="close" ?data-dismiss ="modal" > &times; </ button >
          ??????????????
          < h3 > 添加收藏:?我買過(guò)這個(gè)服務(wù) </ h3 >
          ????????????
          </ div > <!-- Modal?header -->
          ????????????
          < div? class ="modal-body" >
          ?????????????
          < div? class ="row" >
          ????????????
          < div?? class ="span1" ></ div >
          ?????????????
          < div? class ="span4?" >
          ??????????????
          < h3 > 求評(píng)價(jià)(@^_^@)?:? </ h3 >
          ??????????????
          </ div >
          ??????????????
          < div?? class ="span4" ?id ="ratingstar" ?? ></ div >
          ??????????????
          < div?? class ="span1" ?id ="target" ></ div >
          ???????????
          </ div >
          ????????????
          </ div > <!-- Modal?body -->
          ????????????
          < div? class ="modal-footer" >
          ??????????????
          < a? href ="#" ?class ="btn" ?data-dismiss ="modal" ? > Close </ a >
          ??????????????
          < a? href ="#" ?class ="btn?btn-primary" > Save?changes </ a >
          ????????????
          </ div > <!-- Modal?footer -->
          ??????????
          </ div > ? <!-- Modal -->

          ? ??2.滾動(dòng)監(jiān)控(Scrollspy) ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??

          ? ? ? ? ? 滾動(dòng)監(jiān)控是用來(lái)自動(dòng)更新導(dǎo)航位置基于用戶頁(yè)面滾動(dòng)的位置。實(shí)現(xiàn)該效果,也只需要在你想監(jiān)控的滾動(dòng)要素上,添加data-spy="scroll",一般是在body上添加。使用jquery 同樣調(diào)用方法比較簡(jiǎn)單,只需要一行代碼:$('#navbar').scrollspy() .該插件只有refresh方法,offset屬性等。具體效果可以到官方文檔的該處嘗試一下。

          ? 效果如圖4-2所示:

          圖4-2 滾動(dòng)監(jiān)控(Scrollspy)

          ? ? ? ? ? 代碼如下:

          < div? id ="navbarExample" ?class ="navbar?navbar-static" >
          ????????????
          < div? class ="navbar-inner" >
          ??????????????
          < div? class ="container" ?style ="width:?auto;" >
          ????????????????
          < a? class ="brand" ?href ="#" > Project?Name </ a >
          ????????????????
          < ul? class ="nav" >
          ??????????????????
          < li >< a? href ="#fat" > @fat </ a ></ li >
          ??????????????????
          < li >< a? href ="#mdo" > @mdo </ a ></ li >
          ??????????????????
          < li? class ="dropdown" >
          ????????????????????
          < a? href ="#" ?class ="dropdown-toggle" ?data-toggle ="dropdown" > Dropdown? < b? class ="caret" ></ b ></ a >
          ????????????????????
          < ul? class ="dropdown-menu" >
          ??????????????????????
          < li >< a? href ="#one" > one </ a ></ li >
          ??????????????????????
          < li >< a? href ="#two" > two </ a ></ li >
          ??????????????????????
          < li? class ="divider" ></ li >
          ??????????????????????
          < li >< a? href ="#three" > three </ a ></ li >
          ????????????????????
          </ ul >
          ??????????????????
          </ li >
          ????????????????
          </ ul >
          ??????????????
          </ div >
          ????????????
          </ div >
          ??????????
          </ div >
          ??????????
          < div? data-spy ="scroll" ?data-target ="#navbarExample" ?data-offset ="0" ?class ="scrollspy-example" >
          ????????????
          < h4? id ="fat" > @fat </ h4 >
          ????????????
          < p >
          ????????????Ad?leggings?keytar,?brunch?id?art?party?dolor?labore.?Pitchfork?yr?enim?lo-fi?before?they?sold?out?qui.?Tumblr?farm-to-table?bicycle?rights?whatever.?Anim?keffiyeh?carles?cardigan.?Velit?seitan?mcsweeney's?photo?booth?3?wolf?moon?irure.?Cosby?sweater?lomo?jean?shorts,?williamsburg?hoodie?minim?qui?you?probably?haven't?heard?of?them?et?cardigan?trust?fund?culpa?biodiesel?wes?anderson?aesthetic.?Nihil?tattooed?accusamus,?cred?irony?biodiesel?keffiyeh?artisan?ullamco?consequat.
          ????????????
          </ p >
          ????????????
          < h4? id ="mdo" > @mdo </ h4 >
          ????????????
          < p >
          ????????????Veniam?marfa?mustache?skateboard,?adipisicing?fugiat?velit?pitchfork?beard.?Freegan?beard?aliqua?cupidatat?mcsweeney's?vero.?Cupidatat?four?loko?nisi,?ea?helvetica?nulla?carles.?Tattooed?cosby?sweater?food?truck,?mcsweeney's?quis?non?freegan?vinyl.?Lo-fi?wes?anderson?+1?sartorial.?Carles?non?aesthetic?exercitation?quis?gentrify.?Brooklyn?adipisicing?craft?beer?vice?keytar?deserunt.
          ????????????
          </ p >
          ????????????
          < h4? id ="one" > one </ h4 >
          ????????????
          < p >
          ????????????Occaecat?commodo?aliqua?delectus.?Fap?craft?beer?deserunt?skateboard?ea.?Lomo?bicycle?rights?adipisicing?banh?mi,?velit?ea?sunt?next?level?locavore?single-origin?coffee?in?magna?veniam.?High?life?id?vinyl,?echo?park?consequat?quis?aliquip?banh?mi?pitchfork.?Vero?VHS?est?adipisicing.?Consectetur?nisi?DIY?minim?messenger?bag.?Cred?ex?in,?sustainable?delectus?consectetur?fanny?pack?iphone.
          ????????????
          </ p >
          ????????????
          < h4? id ="two" > two </ h4 >
          ????????????
          < p >
          ????????????In?incididunt?echo?park,?officia?deserunt?mcsweeney's?proident?master?cleanse?thundercats?sapiente?veniam.?Excepteur?VHS?elit,?proident?shoreditch?+1?biodiesel?laborum?craft?beer.?Single-origin?coffee?wayfarers?irure?four?loko,?cupidatat?terry?richardson?master?cleanse.?Assumenda?you?probably?haven't?heard?of?them?art?party?fanny?pack,?tattooed?nulla?cardigan?tempor?ad.?Proident?wolf?nesciunt?sartorial?keffiyeh?eu?banh?mi?sustainable.?Elit?wolf?voluptate,?lo-fi?ea?portland?before?they?sold?out?four?loko.?Locavore?enim?nostrud?mlkshk?brooklyn?nesciunt.
          ????????????
          </ p >
          ????????????
          < h4? id ="three" > three </ h4 >
          ????????????
          < p >
          ????????????Ad?leggings?keytar,?brunch?id?art?party?dolor?labore.?Pitchfork?yr?enim?lo-fi?before?they?sold?out?qui.?Tumblr?farm-to-table?bicycle?rights?whatever.?Anim?keffiyeh?carles?cardigan.?Velit?seitan?mcsweeney's?photo?booth?3?wolf?moon?irure.?Cosby?sweater?lomo?jean?shorts,?williamsburg?hoodie?minim?qui?you?probably?haven't?heard?of?them?et?cardigan?trust?fund?culpa?biodiesel?wes?anderson?aesthetic.?Nihil?tattooed?accusamus,?cred?irony?biodiesel?keffiyeh?artisan?ullamco?consequat.
          ????????????
          </ p >
          ????????????
          < p > Keytar?twee?blog,?culpa?messenger?bag?marfa?whatever?delectus?food?truck.?Sapiente?synth?id?assumenda.?Locavore?sed?helvetica?cliche?irony,?thundercats?you?probably?haven't?heard?of?them?consequat?hoodie?gluten-free?lo-fi?fap?aliquip.?Labore?elit?placeat?before?they?sold?out,?terry?richardson?proident?brunch?nesciunt?quis?cosby?sweater?pariatur?keffiyeh?ut?helvetica?artisan.?Cardigan?craft?beer?seitan?readymade?velit.?VHS?chambray?laboris?tempor?veniam.?Anim?mollit?minim?commodo?ullamco?thundercats.
          ????????????
          </ p >
          ??????????
          </ div >

          ?

          ? ? ?3.標(biāo)簽效果(Tabs)? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?

          ? ? ? ? ? ? ? 標(biāo)簽插件添加了快速的動(dòng)態(tài)的tab和pill,來(lái)實(shí)現(xiàn)過(guò)渡頁(yè)面內(nèi)容的效果。同樣的,我們可以不用寫(xiě)任何javascript代碼來(lái)實(shí)現(xiàn)該效果,我們只需要在tab或者piil頁(yè)面要素上簡(jiǎn)單地添加上nav 和nav-tabs并引用該js文件即可。同時(shí)可以使用ul標(biāo)簽來(lái)樣式化你的要素。具體效果可以到官方文檔的該處嘗試一下。效果如圖4-3所示:

          圖4-3?標(biāo)簽效果(Tabs)?

             代碼如下:

          < ul? id ="myTab" ?class ="nav?nav-tabs" >
          ????????????
          < li? class ="active" >< a? href ="#home" ?data-toggle ="tab" > Home </ a ></ li >
          ????????????
          < li >< a? href ="#profile" ?data-toggle ="tab" > Profile </ a ></ li >
          ????????????
          < li? class ="dropdown" >
          ??????????????
          < a? href ="#" ?class ="dropdown-toggle" ?data-toggle ="dropdown" > Dropdown? < b? class ="caret" ></ b ></ a >
          ??????????????
          < ul? class ="dropdown-menu" >
          ????????????????
          < li >< a? href ="#dropdown1" ?data-toggle ="tab" > @fat </ a ></ li >
          ????????????????
          < li >< a? href ="#dropdown2" ?data-toggle ="tab" > @mdo </ a ></ li >
          ??????????????
          </ ul >
          ????????????
          </ li >
          ??????????
          </ ul >
          ??????????
          < div? id ="myTabContent" ?class ="tab-content" >
          ????????????
          < div? class ="tab-pane?fade?in?active" ?id ="home" >
          ??????????????
          < p > Raw?denim?you?probably?haven't?heard?of?them?jean?shorts?Austin.?Nesciunt?tofu?stumptown?aliqua,?retro?synth?master?cleanse.?Mustache?cliche?tempor,?williamsburg?carles?vegan?helvetica.?Reprehenderit?butcher?retro?keffiyeh?dreamcatcher?synth.?Cosby?sweater?eu?banh?mi,?qui?irure?terry?richardson?ex?squid.?Aliquip?placeat?salvia?cillum?iphone.?Seitan?aliquip?quis?cardigan?american?apparel,?butcher?voluptate?nisi?qui. </ p >
          ????????????
          </ div >
          ????????????
          < div? class ="tab-pane?fade" ?id ="profile" >
          ??????????????
          < p > Food?truck?fixie?locavore,?accusamus?mcsweeney's?marfa?nulla?single-origin?coffee?squid.?Exercitation?+1?labore?velit,?blog?sartorial?PBR?leggings?next?level?wes?anderson?artisan?four?loko?farm-to-table?craft?beer?twee.?Qui?photo?booth?letterpress,?commodo?enim?craft?beer?mlkshk?aliquip?jean?shorts?ullamco?ad?vinyl?cillum?PBR.?Homo?nostrud?organic,?assumenda?labore?aesthetic?magna?delectus?mollit.?Keytar?helvetica?VHS?salvia?yr,?vero?magna?velit?sapiente?labore?stumptown.?Vegan?fanny?pack?odio?cillum?wes?anderson?8-bit,?sustainable?jean?shorts?beard?ut?DIY?ethical?culpa?terry?richardson?biodiesel.?Art?party?scenester?stumptown,?tumblr?butcher?vero?sint?qui?sapiente?accusamus?tattooed?echo?park. </ p >
          ????????????
          </ div >
          ????????????
          < div? class ="tab-pane?fade" ?id ="dropdown1" >
          ??????????????
          < p > Etsy?mixtape?wayfarers,?ethical?wes?anderson?tofu?before?they?sold?out?mcsweeney's?organic?lomo?retro?fanny?pack?lo-fi?farm-to-table?readymade.?Messenger?bag?gentrify?pitchfork?tattooed?craft?beer,?iphone?skateboard?locavore?carles?etsy?salvia?banksy?hoodie?helvetica.?DIY?synth?PBR?banksy?irony.?Leggings?gentrify?squid?8-bit?cred?pitchfork.?Williamsburg?banh?mi?whatever?gluten-free,?carles?pitchfork?biodiesel?fixie?etsy?retro?mlkshk?vice?blog.?Scenester?cred?you?probably?haven't?heard?of?them,?vinyl?craft?beer?blog?stumptown.?Pitchfork?sustainable?tofu?synth?chambray?yr. </ p >
          ????????????
          </ div >
          ????????????
          < div? class ="tab-pane?fade" ?id ="dropdown2" >
          ??????????????
          < p > Trust?fund?seitan?letterpress,?keytar?raw?denim?keffiyeh?etsy?art?party?before?they?sold?out?master?cleanse?gluten-free?squid?scenester?freegan?cosby?sweater.?Fanny?pack?portland?seitan?DIY,?art?party?locavore?wolf?cliche?high?life?echo?park?Austin.?Cred?vinyl?keffiyeh?DIY?salvia?PBR,?banh?mi?before?they?sold?out?farm-to-table?VHS?viral?locavore?cosby?sweater.?Lomo?wolf?viral,?mustache?readymade?thundercats?keffiyeh?craft?beer?marfa?ethical.?Wolf?salvia?freegan,?sartorial?keffiyeh?echo?park?vegan. </ p >
          ????????????
          </ div >
          ??????????
          </ div >

          ?

          ? ? ?4.提示效果(Tooltip)與“泡芙”效果(popovers) ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?

          ? ? ? ? ? 4.1?提示效果(Tooltip)

          ? ? ? ? ? ? 提示效果,就是用戶鼠標(biāo)劃過(guò)或者放在某些連接上,浮現(xiàn)的內(nèi)容提示和補(bǔ)充。Bootstrap2.0的Tooltip的實(shí)現(xiàn),受Jason Frame寫(xiě)的出色的jQuery.tipsy插件所啟發(fā)。該版本的Tooltips 不再依賴于圖片,而是使用CSS3的動(dòng)畫(huà)和數(shù)據(jù)屬性。與本文上述的其他插件不同的是,tooltip的觸發(fā)事件,必須使用javascript代碼實(shí)現(xiàn)。我們先來(lái)看Tooltip的html寫(xiě)法:

          						<
          						a 
          						href
          						="#"
          						 rel
          						="tooltip"
          						 title
          						="first tooltip"
          						>別摸我</a>

          ?

          ? ? ? ? ? ?基于性能的原因,?提示效果(Tooltip)和“泡芙”效果(popovers)都在屬性中內(nèi)置了數(shù)據(jù)選擇器,我們可以指定css或者jquery選擇器來(lái)使用它們。觸發(fā)tooltip,只需要一行代碼:

          $('#example').tooltip(options)

          ?

          ? ? ? ? ? 它的屬性選項(xiàng)包括:animation,placement,selector,trigger,delay等。animation是用來(lái)實(shí)現(xiàn)提示的淡出css效果,placement則控制提示出現(xiàn)的位置(top,button,left等)。selector選項(xiàng)就是提供給用戶,以控制tooltip出現(xiàn)在(委派于/裝飾與)頁(yè)面具體的某個(gè)目標(biāo)上,默認(rèn)是false。trigger是觸發(fā)tooltip的鼠標(biāo)或者鍵盤事件類型,包括hover,focus,maual等。delay則是控制tooltip的顯示和延遲的時(shí)間變量(ms),形式可以是這樣:delay: { show: 500, hide: 100 }。

          ? ? ? tooltip效果如圖4-4所示:

          圖4-4?提示效果(Tooltip)

          ? ? ? ? ?代碼如下所示:

          View?Code?

          ?
          < div? class ="tooltip-demo?well" >
          ????????????
          < p? class ="muted" ?style ="margin-bottom:?0;" > Tight?pants?next?level?keffiyeh? < a? href ="#" ?rel ="tooltip" ?title ="first?tooltip" > you?probably </ a > ?haven't?heard?of?them.?Photo?booth?beard?raw?denim?letterpress?vegan?messenger?bag?stumptown.?Farm-to-table?seitan,?mcsweeney's?fixie?sustainable?quinoa?8-bit?american?apparel? < a? href ="#" ?rel ="tooltip" ?title ="Another?tooltip" > have?a </ a > ?terry?richardson?vinyl?chambray.?Beard?stumptown,?cardigans?banh?mi?lomo?thundercats.?Tofu?biodiesel?williamsburg?marfa,?four?loko?mcsweeney's?cleanse?vegan?chambray.?A?really?ironic?artisan? < a? href ="#" ?rel ="tooltip" ?title ="Another?one?here?too" > whatever?keytar </ a > ,?scenester?farm-to-table?banksy?Austin? < a? href ="#" ?rel ="tooltip" ?title ="The?last?tip!" > twitter?handle </ a > ?freegan?cred?raw?denim?single-origin?coffee?viral.
          ????????????
          </ p >
          ??????????
          </ div >

          ? ? ? ? ?4.2?“泡芙”效果(popovers)

          ? ? ? ? ? ? ?“泡芙”效果就是將一些次要的內(nèi)容作為一個(gè)小的疊加層展添加到具體頁(yè)面要素上,實(shí)現(xiàn)ipad風(fēng)格的提示效果(實(shí)際上就是放大版的tooltip)。因此實(shí)現(xiàn)“泡芙”效果(popovers)首先需要引用tooltips插件。我們先來(lái)看看“泡芙”效果(popovers)的html的寫(xiě)法。

          						<
          						a 
          						class
          						="btn  btn-success"
          						 type
          						="submit"
          						 rel
          						="popover"
          						 title
          						="推薦到射交網(wǎng)絡(luò)"
          						 data-content
          						="你以為我會(huì)告訴你渣浪老刪帖嗎?!"
          						>  推薦</a>

          ? ? ? ? 對(duì)比tooltip的html的markup,我們可以看到兩者的差別就只有在于rel的類型而已。同樣的,觸發(fā)popovers,只需要一行代碼:

          $('#example').popover(options)

          ? ? ? ? ? 而它的屬性與tooltip幾乎完全一樣……只多一個(gè)content,用來(lái)存儲(chǔ)疊加的內(nèi)容。效果如圖4-5所示:

          圖4-5?“泡芙”效果(popovers)

          ? ? ? 代碼如下所示:

          < div? class ="span3??" >
          ?
          < a? class ="btn??btn-success" ?type ="submit" ?rel ="popover" ?title ="推薦到射交網(wǎng)絡(luò)" ?data-content ="你以為我會(huì)告訴你渣浪老刪帖嗎?!" >< i? class ="?icon-white?icon-share" ></ i > ??推薦 </ a >
          </ div >

          ?

          ??參考文獻(xiàn)與延伸閱讀:

          ? ? ?1.Modal window?http://en.wikipedia.org/wiki/Modal_window

          ? ? ?2.?模態(tài)窗口和非模態(tài)窗口?http://tgyd2006.iteye.com/blog/211497

          ? ? ?3.Popover?http://en.wikipedia.org/wiki/Popover

          posted on 2013-01-31 11:08 禮物 閱讀(4434) 評(píng)論(0)  編輯  收藏 所屬分類: BootStrap

          只有注冊(cè)用戶登錄后才能發(fā)表評(píng)論。

          網(wǎng)站導(dǎo)航:
           
          主站蜘蛛池模板: 镇巴县| 隆子县| 南靖县| 贵德县| 襄汾县| 木兰县| 西青区| 靖江市| 茶陵县| 玉屏| 扎赉特旗| 远安县| 临桂县| 仁寿县| 清水县| 玛纳斯县| 鄂温| 汉中市| 南丹县| 平阴县| 杭锦后旗| 榆社县| 星座| 甘孜县| 青田县| 镇安县| 石狮市| 新沂市| 澳门| 威远县| 甘肃省| 如东县| 西畴县| 兰溪市| 甘洛县| 兴宁市| 老河口市| 沧源| 宁城县| 汾阳市| 平定县|