CSS3的Flexbox骰子布局的實現及分析

來源:互聯網
上載者:User
這篇文章主要介紹了關於CSS3的Flexbox骰子布局的實現及分析,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下

骰子布局顧名思義,就是好比骰子的一面最多可以放置9個點,而每個面放置的點數正好就是一個布局的模型圖,這裡我們就帶來CSS3的Flexbox骰子布局的實現及問題講解:

本文中只是熟悉基本屬性的用法,並完成一組骰子各個面的製作。在下面的內容我不會涉及flexbox一些比較棘手的問題,比如舊版本文法、供應商首碼、瀏覽器怪癖等:

一、First Face
我們知道,骰子有六個面,每個面的點的個數代表該面的值,第一個面由一個水平垂直置中的點組成。下面來看具體的實現:

 <section name="01" class="face-01">     <span class="dot"></span>    </section>   face-01 {   display: flex;   justify-content: center;   align-items: center;

關於justify-content和align-items的用法請參考這裡justify-content,align-items。使用flexbox,垂直置中兩行屬性就可以搞定,很easy!

二、Second Face

.face-02 {    display: flex;    justify-content: space-between;   }   .face-02 .dot:nth-of-type(2) {    align-self: flex-end;   }     <section name="02" class="face-02">      <span class="dot"></span>      <span class="dot"></span>     </section>

這裡我們不能使用align-items屬性,使用它兩個點都會受影響,flexbox提供了一個align-self屬性,這個屬性可以讓我們更方便的控制flex items的各項沿著cross axias方向,設定不同的布局。align-self的用法參考這裡align-self。

三、Third Face

.face-03 {    display: flex;    justify-content: space-between;   }   .face-03 .dot:nth-of-type(2) {    align-self: center;   }   .face-03 .dot:nth-of-type(3) {    align-self: flex-end;   }   <section name="03" class="face-03">    <span class="dot"></span>    <span class="dot"></span>    <span class="dot"></span>   </section>

該face與second face 使用的屬性相同,不再解釋。

四、Fourth Face

.face-04 {    display: flex;    justify-content: space-between;    flex-direction: column;   }   .face-04 .column {    display: flex;    justify-content: space-between;   }   <section name="04" class="face-04">     <p class="column">       <span class="dot"></span>       <span class="dot"></span>     </p>     <p class="column">       <span class="dot"></span>       <span class="dot"></span>     </p>   </section>

本例中使用了flex-direction,從字面意思可以看出,是用來控制flex的方向,即按列還是按行來布局,該屬性更詳細的用法可以參考這裡flex-direction

後面Fifth Face 和 Sixth Face,根據前面的布局思想,就很easy了不再贅述!

寫到此,想想配合JS寫一個玩骰子的小遊戲應該很easy了吧。

五、實現1,2,3,4,6,12等份

.row {     display: flex;     box-sizing: border-box;   }   .column {     margin: 10px;     flex-grow: 1;     flex-shrink: 1;     flex-basis: 0;     box-sizing: border-box;   }   <section class="row">     <p class="column">One</p>   </section>   <section class="row">     <p class="column">One Half</p>     <p class="column">One Half</p>   </section>   <section class="row">     <p class="column">One Third</p>     <p class="column">One Third</p>     <p class="column">One Third</p>   </section>   <section class="row">     <p class="column">One Fourth</p>     <p class="column">One Fourth</p>     <p class="column">One Fourth</p>     <p class="column">One Fourth</p>   </section>   <section class="row">     <p class="column">One Sixth</p>     <p class="column">One Sixth</p>     <p class="column">One Sixth</p>     <p class="column">One Sixth</p>     <p class="column">One Sixth</p>     <p class="column">One Sixth</p>   </section>   <section class="row">     <p class="column">One Twelve</p>     <p class="column">One Twelve</p>     <p class="column">One Twelve</p>     <p class="column">One Twelve</p>     <p class="column">One Twelve</p>     <p class="column">One Twelve</p>     <p class="column">One Twelve</p>     <p class="column">One Twelve</p>     <p class="column">One Twelve</p>     <p class="column">One Twelve</p>     <p class="column">One Twelve</p>     <p class="column">One Twelve</p>   </section>  [object Object]

在本例中用到了flex-grow,flex-shrink,flex-basis三個屬性。
1. flex-grow:根據需要用來定義伸縮項目的擴充能力。它接受一個不帶單位的值做為一個比例。主要用來決定伸縮容器剩餘空間按比例應擴充多少空間。
如果所有伸縮項目的“flex-grow”設定了“1”,那麼每個伸縮項目將設定為一個大小相等的剩餘空間。如果你給其中一個伸縮項目設定了“flex-grow”值為“2”,那麼這個伸縮項目所佔的剩餘空間是其他伸縮項目所佔剩餘空間的兩倍。負值無效。
2. flex-shrink:根據需要用來定義伸縮項目收縮的能力。負值同樣無效。
3. flex-basis: 用來設定伸縮基準值,剩餘的空間按比率進行伸縮,不支援負值。如果設定為0,圍繞內容的額外的空間不會考慮在內。如果設定為auto,額外的空間是基於flex-grow的值分配。

六、實現2-3-7布局

.row237 .column:first-of-type {     flex-grow: 2;     flex-basis: 5px;   }   .row237 .column:nth-of-type(2) {     flex-grow: 3;     flex-basis: 18px;   }   .row237 .column:nth-of-type(3) {     flex-grow: 7;     flex-basis: 70.5px;   }   <section class="row row237">     <p class="column">One Half</p>     <p class="column">One Third</p>     <p class="column">One Seventh</p>   </section>

此處各項flex-basis的值的計算,應該有個公式(待解決),如果有這個公式,配合sass,less等預先處理語言實現多列調適型配置將會很方便。

以上就是本文的全部內容,希望對大家的學習有所協助,更多相關內容請關注topic.alibabacloud.com!

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.