摘要:屬性規定元素應橫跨多少列。和微信小程序瀑布流布局避免在元素內部插入分頁符頁面的初始數據案例名稱你所不知道的紅酒知識紅酒知識案例名稱案例名稱案例名稱案例名稱案例名稱案例名稱
參考:作者:阿峰
鏈接:https://www.jianshu.com/p/14d4b9ac473c 來源:簡書
1.column-count 屬性規定元素應該被分隔的列數:
-moz-column-count:3; /* Firefox */ -webkit-column-count:3; /* Safari 和 Chrome */ column-count:3;
2.column-gap 屬性規定列之間的間隔:
-moz-column-gap:40px; /* Firefox */ -webkit-column-gap:40px; /* Safari 和 Chrome */ column-gap:40px;
3.column-rule 屬性設置列之間的寬度、樣式和顏色規則。
-moz-column-rule:3px outset #ff0000; /* Firefox */ -webkit-column-rule:3px outset #ff0000; /* Safari and Chrome */ column-rule:3px outset #ff0000;
4.column-span 屬性規定元素應橫跨多少列。
Internet Explorer 10 和 Opera 支持 column-span 屬性。
Safari 和 Chrome 支持替代的 -webkit-column-span 屬性。
/只有 Chrome 和 Opera 支持 column-span 屬性。/
-webkit-column-span:all; /* Chrome */ column-span:all;
5.column-width 屬性規定列的寬度。
Internet Explorer 10 和 Opera 支持 column-width 屬性。
Firefox 支持替代的 -moz-column-width 屬性。
Safari 和 Chrome 支持替代的 -webkit-column-width 屬性。
注釋:Internet Explorer 9 以及更早版本的瀏覽器不支持 column-width 屬性。
column-width:100px; -moz-column-width:100px; /* Firefox */ -webkit-column-width:100px; /* Safari 和 Chrome */微信小程序瀑布流布局
wxml
{{item.title}}
wxss
page{ background-color: #eee; } .case-page{ padding:20rpx; } .list-masonry{ column-count: 2; column-gap: 20rpx; } .item-masonry{ background-color: #fff; break-inside: avoid;/*避免在元素內部插入分頁符*/ box-sizing: border-box; padding: 20rpx; margin-bottom:20rpx; } .item-masonry image { width: 100%; }
JS
Page({ /** * 頁面的初始數據 */ data: { imgWidth: 0, imgHeight: 0, note: [ { title: "案例名稱", url: "http://zq.jhcms.cn/attachs/photo/201711/20171130_176CFE51B6710715B1BBBEF2F86ACB0C.jpg", }, { title: "你所不知道的紅酒知識", url: "http://img3.imgtn.bdimg.com/it/u=1417732605,3777474040&fm=26&gp=0.jpg", }, { title: "紅酒知識", url: "http://f10.baidu.com/it/u=121654667,1482133440&fm=72", }, { title: "案例名稱", url: "http://zq.jhcms.cn/attachs/photo/201711/20171130_9E39DA252E3946BE36218D85876C4AB4.jpg", }, { title: "案例名稱", url: "http://img3.imgtn.bdimg.com/it/u=1417732605,3777474040&fm=26&gp=0.jpg" }, { title: "案例名稱", url: "http://f10.baidu.com/it/u=121654667,1482133440&fm=72" }, { title: "案例名稱", url: "http://img4.imgtn.bdimg.com/it/u=2748975304,2710656664&fm=26&gp=0.jpg" }, { title: "案例名稱", url: "http://img2.imgtn.bdimg.com/it/u=1561660534,130168102&fm=26&gp=0.jpg" }, { title: "案例名稱", url: "http://img3.imgtn.bdimg.com/it/u=1417732605,3777474040&fm=26&gp=0.jpg" } ] } })
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/117204.html
摘要:完整代碼請戳我們回到小程序,此時接口返回的數據如下可以看到每個圖片都有高度了,接下來我們實現瀑布流布局,等下,我們搞下瀑布流布局的懶加載,關于小程序的懶加載,猛戳了解更多。 效果圖 來來來,看啊看,外面的世界多好看, showImg(https://segmentfault.com/img/remote/1460000014887454?w=371&h=580); 效果圖展示的是瀑布流...
摘要:因為端和移動端布局差異較大,所以我將兩端布局分開講,本文章將針對端的布局進行講解,以下代碼只寫關鍵代碼。為了提高網頁性能,考慮到,表格元素盡量少用,有其他選擇的情況盡量用其他布局。 前言 此文章是 解剖CSS布局原理 的續集,之前那篇文章講的都是理論,本文章講具體的實例,根據自己對布局的理解與開發經驗分為以下幾類。 因為PC端和移動端布局差異較大,所以我將兩端布局分開講,本文章將針對P...
閱讀 2803·2021-11-19 11:35
閱讀 2581·2021-11-02 14:40
閱讀 1396·2021-09-04 16:48
閱讀 3009·2019-08-30 15:55
閱讀 1752·2019-08-30 13:11
閱讀 1955·2019-08-29 11:12
閱讀 1088·2019-08-27 10:52
閱讀 3157·2019-08-26 18:36