成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專(zhuān)欄INFORMATION COLUMN

Flex 學(xué)習(xí)

番茄西紅柿 / 3570人閱讀

摘要:案例一無(wú)標(biāo)題

Flex案例一:

  1 <html>
  2 <head>
  3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  4     <title>無(wú)標(biāo)題title>
  5     <style type="text/css">
  6         body,h1,h2,h3,h4,h5,h6,dl,dt,dd,ul,ol,li,th,td,p,blockquote,pre,form,fieldset,legend,input,button,textarea,hr{
  7             margin:0;
  8             padding:0;
  9         }
 10         body{
 11             display: flex;
 12             background: -webkit-linear-gradient(top,#222,#333);
 13             background: linear-gradient(top,#222,#333);
 14             justify-content:center;
 15             align-items:center;
 16             align-content:center;
 17             flex-wrap:wrap;
 18             position:relative;
 19         }
 20         [class$="box"]{
 21             background-color: #e7e7e7;
 22             width: 104px;
 23             height: 104px;
 24             /*padding:4px;
 25             margin:16px;*/
 26             object-fit:contain;
 27             border-radius: 10%;
 28             box-shadow: inset 0 5px white,inset 0 -5px #bbb,inset 5px 0 #d7d7d7,inset -5px 0 #d7d7d7;
 29             display: flex;
 30 
 31             position: absolute;
 32             top:0;
 33             left: 0;
 34             /*top: 40%;
 35             left: 40%;*/
 36         }
 37         [class="item"]{
 38             display: block;
 39             width:24px;
 40             height: 24px;
 41             border-radius: 50%;
 42             margin:4px;
 43             background-color: #333;
 44             box-shadow: inset 0 3px #111,inset 0 -3px #555;
 45         }
 46         .first-box{
 47             justify-content:center;
 48             align-items:center;
 49             align-content:center;
 50         }
 51         .second-box{
 52             justify-content:space-between;
 53         }
 54         .second-box .item:nth-of-type(2){
 55             -webkit-align-self:flex-end;
 56         }
 57         .third-box{
 58             
 59         }
 60         .third-box .item:nth-of-type(2){
 61             align-self:center;
 62         }
 63         .third-box .item:nth-of-type(3){
 64             align-self:flex-end;
 65         }
 66         .sixth-box,
 67         .four-box{
 68             justify-content:space-between;
 69             justify-wrap:wrap;
 70         }
 71         .sixth-box .column,
 72         .four-box .column{
 73             display: flex;
 74             flex-direction:column;
 75             justify-content:space-between;
 76         }
 77         .fifth-box{
 78             justify-content:space-between;
 79         }
 80         .fifth-box .column{
 81             display: flex;
 82             flex-direction:column;
 83             justify-content:space-between;
 84         }
 85         .fifth-box .column:nth-of-type(2){
 86             justify-content:center;
 87             align-items:center;
 88         }
 89 
 90         .tbox{
 91             width: 104px;
 92             height: 104px;
 93 
 94             background-color: transparent;
 95             border:none;
 96             box-shadow: none;
 97             transform-style:preserve-3d;
 98             display: flex;
 99             justify-content:center;
100             align-items:center;
101             align-content:center;
102             flex-wrap:wrap;
103             position:relative;
104             -webkit-animation:iphone 4s linear infinite;
105 
106             transform:rotateZ(30deg);
107         }
108         .tbox:hover{
109             -webkit-animation-play-state:paused;
110         }
111         .sixth-box{
112             /*transform:rotate(30deg);*/
113             transform-origin:right bottom;
114             transform:rotateZ(30deg);
115         }
116         .fifth-box{
117             margin-left: 25px;
118             margin-top: 7px;
119             transform-origin:right 50%;
120             transform:translateZ(-105px) rotateY(90deg) rotateX(-29deg);
121         }
122         .four-box{
123             margin-left: 40px;
124             margin-top: -45px;
125             /*margin-top: -36px;*/
126             transform-origin:left 50%;
127             transform:translateZ(-105px) rotateY(-90deg) rotateX(30deg);
128         }
129         .third-box{
130             margin-left: 40px;
131             margin-top:-45px;
132             /*margin-left: 240px;*/
133             transform-origin:left 50%;
134             transform:translateZ(-105px) rotateZ(30deg);
135         }
136         .second-box{
137             margin-left: 7px;
138             margin-top:80px;
139             /*margin-top: 128px;*/
140             transform-origin: 50% top;
141             transform:translateZ(-105px) rotateX(90deg) rotateY(30deg);
142         }
143         .first-box{
144             margin-left:58px;
145             margin-top:-116px;
146             /*margin-top: -96px;*/
147             transform-origin: 50% bottom;
148             transform:translateZ(-105px) rotateX(-90deg)  rotateY(-30deg);
149         }
150 
151         @-webkit-keyframes iphone{
152             from{
153                 transform:rotateY(0deg);
154             }
155             to{
156                 transform:rotateY(360deg);
157             }
158         }
159     style>
160 head>
161 <body>
162 <div class="tbox">
163     <div class="first-box">
164         <span class="item">span>
165     div>
166     <div class="second-box">
167         <span class="item">span>
168         <span class="item">span>
169     div>
170     <div class="third-box">
171         <span class="item">span>
172         <span class="item">span>
173         <span class="item">span>
174     div>
175     <div class="four-box">
176         <div class="column">
177             <span class="item">span>
178             <span class="item">span>
179         div>
180         <div class="column">
181             <span class="item">span>
182             <span class="item">span>
183         div>
184     div>
185     <div class="fifth-box">
186         <div class="column">
187             <span class="item">span>
188             <span class="item">span>
189         div>
190         <div class="column">
191             <span class="item">span>
192         div>
193         <div class="column">
194             <span class="item">span>
195             <span class="item">span>
196         div>
197     div>
198     <div class="sixth-box">
199         <div class="column">
200             <span class="item">span>
201             <span class="item">span>
202             <span class="item">span>
203         div>
204         <div class="column">
205             <span class="item">span>
206             <span class="item">span>
207             <span class="item">span>
208         div>
209     div>
210 div>
211 
212 body>
213 html>
View Code

 

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/2023.html

相關(guān)文章

  • 初步學(xué)習(xí)彈性布局

    摘要:今天剛剛學(xué)習(xí)了微信小程序,學(xué)習(xí)微信小程序之前首先得熟悉彈性布局如果把一個(gè)元素設(shè)置為,它的所有子元素都成為容器成員,稱(chēng)之為項(xiàng)目,并且,子元素的和屬性都會(huì)失效。以下介紹彈性布局設(shè)置在容器上的種屬性。與交叉軸兩端對(duì)齊,軸線(xiàn)之間的間隔平均分布。 今天剛剛學(xué)習(xí)了微信小程序,學(xué)習(xí)微信小程序之前首先得熟悉彈性布局showImg(https://segmentfault.com/img/bVYNPQ?...

    Code4App 評(píng)論0 收藏0
  • 初步學(xué)習(xí)彈性布局

    摘要:今天剛剛學(xué)習(xí)了微信小程序,學(xué)習(xí)微信小程序之前首先得熟悉彈性布局如果把一個(gè)元素設(shè)置為,它的所有子元素都成為容器成員,稱(chēng)之為項(xiàng)目,并且,子元素的和屬性都會(huì)失效。以下介紹彈性布局設(shè)置在容器上的種屬性。與交叉軸兩端對(duì)齊,軸線(xiàn)之間的間隔平均分布。 今天剛剛學(xué)習(xí)了微信小程序,學(xué)習(xí)微信小程序之前首先得熟悉彈性布局showImg(https://segmentfault.com/img/bVYNPQ?...

    syoya 評(píng)論0 收藏0
  • FlexBox學(xué)習(xí) 彈性布局_019

    摘要:學(xué)習(xí)彈性布局模型,通常被稱(chēng)為,是一種一維的布局模型。任何空間分布都將在該行上發(fā)生,而不影響該空間分布的其他行。同時(shí),布局空白對(duì)于元素的對(duì)齊行為也是很重要的。這會(huì)使該元素延展,并占據(jù)此方向軸上的布局空白。 FlexBox學(xué)習(xí) 彈性布局 Flexible Box 模型,通常被稱(chēng)為 flexbox,是一種一維的布局模型。它給 flexbox 的子元素之間提供了強(qiáng)大的空間分布和對(duì)齊能力。 一維...

    warnerwu 評(píng)論0 收藏0
  • FlexBox學(xué)習(xí) 彈性布局_019

    摘要:學(xué)習(xí)彈性布局模型,通常被稱(chēng)為,是一種一維的布局模型。任何空間分布都將在該行上發(fā)生,而不影響該空間分布的其他行。同時(shí),布局空白對(duì)于元素的對(duì)齊行為也是很重要的。這會(huì)使該元素延展,并占據(jù)此方向軸上的布局空白。 FlexBox學(xué)習(xí) 彈性布局 Flexible Box 模型,通常被稱(chēng)為 flexbox,是一種一維的布局模型。它給 flexbox 的子元素之間提供了強(qiáng)大的空間分布和對(duì)齊能力。 一維...

    MyFaith 評(píng)論0 收藏0
  • 學(xué)習(xí)關(guān)于display :flex 布局問(wèn)題!

    摘要:什么是呢答是的縮寫(xiě),意為彈性布局這個(gè)東西的引入,為盒模型提供了最大的靈活性可以相應(yīng)式的實(shí)現(xiàn)各種頁(yè)面的布局。基本概念采用布局的元素,稱(chēng)為容器,簡(jiǎn)稱(chēng)容器。在這個(gè)容器中默認(rèn)存在兩個(gè)軸水平方向的主軸和垂直方向上的交叉軸。 很多人不明白這個(gè)display:flex是到底是什么東西,如何使用的 。 1.什么是display:flex呢? 答:flex是 flexible box的縮寫(xiě),意為彈性布局 ;...

    番茄西紅柿 評(píng)論0 收藏0
  • flex布局-學(xué)習(xí)

    摘要:今天上網(wǎng)找了下各種的博文學(xué)習(xí)了一番資料如下阮一峰的網(wǎng)絡(luò)日志年提出了布局特點(diǎn)是簡(jiǎn)便完整響應(yīng)式兼容性如下查詢(xún)鏈接介紹意思為彈性布局任何一容器都可以指定為布局甚至行內(nèi)元素也可以但是由于支持的情況各不相同我們還是需要對(duì)屬性做兼容性處理如加上 今天,上網(wǎng)找了下各種flex的博文學(xué)習(xí)了一番,資料如下:阮一峰的網(wǎng)絡(luò)日志Dive into Flexbox2009年,W3C提出了---Flex布局,特點(diǎn)...

    hedzr 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

最新活動(dòng)
閱讀需要支付1元查看
<