• uni-app 瀑布流布局的实现


    方式一:使用纯 CSS 实现

    使用 flex 布局方式

    1. <template>
    2. <view class="container">
    3. <view
    4. class="cont-box"
    5. :style="{ '--layout-width': 100 / flowData.column - flowData.columnSpace + '%' }"
    6. v-for="(numVal, index) in flowData.column"
    7. :key="numVal"
    8. >
    9. <view class="item-box" v-for="(item, j) in flowData[`column_${index + 1}`]" :key="j">
    10. <image class="img-tip" :src="item.imgUrl" mode="widthFix" lazy-load />
    11. <view class="tit-tip multi-line-omit">{{ item.title }}view>
    12. <view class="desc-tip multi-line-omit">{{ item.desc }}view>
    13. view>
    14. view>
    15. view>
    16. template>
    17. <script>
    18. export default {
    19. data() {
    20. return {
    21. flowData: {
    22. list: [], // 数据值
    23. column: 2, // 瀑布列数
    24. columnSpace: 2 // 瀑布列宽间距
    25. }
    26. };
    27. },
    28. created() {
    29. /* 初始化每一列的数据 */
    30. for (let i = 1; i <= this.flowData.column; i++) {
    31. this.$set(this.flowData, `column_${i}`, []);
    32. }
    33. },
    34. onLoad() {
    35. /* 数据赋值 */
    36. this.flowData.list = [
    37. {
    38. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679045108_thumb.jpg",
    39. title: "自动驾驶汽车对交通和城市规划的未来影响与挑战",
    40. desc: "分析自动驾驶汽车对未来交通和城市规划的潜在影响,探讨相关挑战。"
    41. },
    42. {
    43. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679044581_thumb.jpg",
    44. title: "可持续城市发展:构建环保城市的策略和实践",
    45. desc: "分析建设可持续城市的战略和实际方法,强调环保、资源利用和城市规划的重要性。"
    46. },
    47. {
    48. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679045190_thumb.jpg",
    49. title: "消灭传染病:全球卫生领域的挑战与创新",
    50. desc: "探讨在全球范围内消灭传染病的挑战,突出卫生领域的创新方法。"
    51. },
    52. {
    53. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679044667_thumb.jpg",
    54. title: "人工智能与机器学习:颠覆性技术对未来的巨大影响",
    55. desc: "探讨人工智能和机器学习如何在多个领域引发革命性变革,从工业到医疗,对未来产生深远影响。"
    56. },
    57. {
    58. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679044562_thumb.jpg",
    59. title: "生命科学的新前沿:基因编辑和生物技术的伦理挑战",
    60. desc: "研究生命科学领域的最新发展,聚焦基因编辑和生物技术的伦理考量,探讨科技前沿的道德挑战。"
    61. },
    62. {
    63. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679045057_thumb.jpg",
    64. title: "加密货币与区块链:重塑全球金融体系的力量",
    65. desc: "解析加密货币和区块链技术对金融体系的颠覆作用,重新定义了全球金融交易方式。"
    66. },
    67. {
    68. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679044716_thumb.jpg",
    69. title: "量子计算与量子技术应用的前沿探索",
    70. desc: "深入研究量子计算和量子技术的前沿,展示这一领域的创新及其应用前景。"
    71. },
    72. {
    73. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679044779_thumb.jpg",
    74. title: "气候变化缓解的复杂性:全球视角下的挑战与机遇",
    75. desc: "探讨应对气候变化的复杂性,强调全球合作,突出应对挑战所蕴含的机遇。"
    76. },
    77. {
    78. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679044956_thumb.jpg",
    79. title: "虚拟现实与医疗保健的交汇:革命性地改变患者护理",
    80. desc: "介绍虚拟现实技术如何在医疗领域革命性地改善患者护理和治疗方法。"
    81. },
    82. {
    83. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679044607_thumb.jpg",
    84. title: "生物工程的突破:改变医学和人类增强的科技",
    85. desc: "研究生物工程领域的创新,关注其在医学和人类增强领域的重要作用。"
    86. },
    87. {
    88. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679045083_thumb.jpg",
    89. title: "社交媒体的演进及其对沟通和社会的影响",
    90. desc: "追溯社交媒体的发展历程,探讨其对人际沟通和社会动态的广泛影响。"
    91. },
    92. {
    93. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679044643_thumb.jpg",
    94. title: "元宇宙时代:在工作、教育和娱乐的虚拟世界中导航",
    95. desc: "介绍元宇宙时代,强调虚拟世界在工作、教育和娱乐中的多样应用。"
    96. },
    97. {
    98. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679044936_thumb.jpg",
    99. title: "通用人工智能:人类是否准备好面对超智能机器?",
    100. desc: "研究通用人工智能的发展,引发思考人类面对超级智能机器的准备程度。"
    101. },
    102. {
    103. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679045159_thumb.jpg",
    104. title: "超越火星:人类太空探索和星际旅行的未来",
    105. desc: "展望人类在太空探索领域的未来,探讨星际旅行的潜力和挑战。"
    106. }
    107. ];
    108. this.$nextTick(() => {
    109. this.initData(); // 数据初始化
    110. });
    111. },
    112. methods: {
    113. /* 数据初始化 */
    114. initData() {
    115. const groupList = this.dynamicGrouping(this.flowData.list, this.flowData.column); // 数据动态分组
    116. groupList.forEach((item, i) => (this.flowData[`column_${i + 1}`] = item));
    117. },
    118. /** 数据动态分组
    119. * @param {Object} data 分组的数据列表
    120. * @param {Object} i 需要分几组
    121. * @returns {Array} groups 已分组的数据
    122. */
    123. dynamicGrouping(data, i) {
    124. if (i <= 0) return "分组数必须大于0";
    125. const groups = [];
    126. for (let j = 0; j < i; j++) {
    127. groups.push([]);
    128. }
    129. for (let k = 0; k < data.length; k++) {
    130. const groupIndex = k % i;
    131. groups[groupIndex].push(data[k]);
    132. }
    133. return groups;
    134. }
    135. }
    136. };
    137. script>
    138. <style lang="scss" scoped>
    139. .container {
    140. display: flex;
    141. justify-content: space-between;
    142. padding: 20rpx;
    143. $borderRadius: 12rpx;
    144. .cont-box {
    145. width: var(--layout-width);
    146. .item-box {
    147. width: 100%;
    148. padding-bottom: 20rpx;
    149. margin-bottom: 30rpx;
    150. border-radius: $borderRadius;
    151. box-shadow: 0rpx 3rpx 6rpx rgba(0, 46, 37, 0.08);
    152. .img-tip {
    153. width: 100%;
    154. border-radius: $borderRadius $borderRadius 0 0;
    155. }
    156. .tit-tip {
    157. text-align: justify;
    158. font-size: 30rpx;
    159. padding: 10rpx 20rpx 0;
    160. font-weight: 900;
    161. }
    162. .desc-tip {
    163. text-align: justify;
    164. font-size: 26rpx;
    165. padding: 5rpx 20rpx 0;
    166. margin-top: 10rpx;
    167. }
    168. }
    169. }
    170. }
    171. /* 多行省略 */
    172. .multi-line-omit {
    173. word-break: break-all; // 允许单词内自动换行,如果一个单词很长的话
    174. text-overflow: ellipsis; // 溢出用省略号显示
    175. overflow: hidden; // 超出的文本隐藏
    176. display: -webkit-box; // 作为弹性伸缩盒子模型显示
    177. -webkit-line-clamp: 2; // 显示的行
    178. -webkit-box-orient: vertical; // 设置伸缩盒子的子元素排列方式--从上到下垂直排列
    179. }
    180. /* 单行省略 */
    181. .one-line-omit {
    182. width: 100%; // 宽度100%:1vw等于视口宽度的1%;1vh等于视口高度的1%
    183. white-space: nowrap; // 溢出不换行
    184. overflow: hidden; // 超出的文本隐藏
    185. text-overflow: ellipsis; // 溢出用省略号显示
    186. }
    187. style>

    方式二:借助于 JavaScript 实现

    获取每一列的高度,每次图片加载时,把该图片加载到列高度最短的那一列进行实现。

    注意:这个是通过图片初始化实现的,所以服务器端的数据必须含有图片。

    vue2 版本

    1. <template>
    2. <view class="container">
    3. <view
    4. :id="`cont_${index + 1}`"
    5. class="cont-box"
    6. :style="{ width: widthCalc, 'margin-left': index === 0 ? 0 : marginCalc }"
    7. v-for="(numVal, index) in flowData.column"
    8. :key="numVal"
    9. >
    10. <view class="item-box" v-for="(item, j) in flowData[`column_${index + 1}`]" :key="j">
    11. <image class="img-tip" :src="item.imgUrl" mode="widthFix" lazy-load :data-item="item" @load="imgLoad" @error="imgError" />
    12. <view class="tit-tip multi-line-omit">{{ item.title }}view>
    13. <view class="desc-tip multi-line-omit">{{ item.desc }}view>
    14. view>
    15. view>
    16. view>
    17. template>
    18. <script>
    19. export default {
    20. data() {
    21. return {
    22. flowData: {
    23. list: [], // 数据值
    24. column: 2, // 瀑布列数
    25. columnSpace: 2 // 瀑布列宽间距
    26. }
    27. };
    28. },
    29. created() {
    30. /* 初始化每一列的数据 */
    31. for (let i = 1; i <= this.flowData.column; i++) {
    32. this.$set(this.flowData, `column_${i}`, []);
    33. }
    34. },
    35. onLoad() {
    36. /* 数据赋值 */
    37. this.flowData.list = [
    38. {
    39. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679045108_thumb.jpg",
    40. title: "自动驾驶汽车对交通和城市规划的未来影响与挑战",
    41. desc: "分析自动驾驶汽车对未来交通和城市规划的潜在影响,探讨相关挑战。"
    42. },
    43. {
    44. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679044581_thumb.jpg",
    45. title: "可持续城市发展:构建环保城市的策略和实践",
    46. desc: "分析建设可持续城市的战略和实际方法,强调环保、资源利用和城市规划的重要性。"
    47. },
    48. {
    49. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679045190_thumb.jpg",
    50. title: "消灭传染病:全球卫生领域的挑战与创新",
    51. desc: "探讨在全球范围内消灭传染病的挑战,突出卫生领域的创新方法。"
    52. },
    53. {
    54. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679044667_thumb.jpg",
    55. title: "人工智能与机器学习:颠覆性技术对未来的巨大影响",
    56. desc: "探讨人工智能和机器学习如何在多个领域引发革命性变革,从工业到医疗,对未来产生深远影响。"
    57. },
    58. {
    59. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679044562_thumb.jpg",
    60. title: "生命科学的新前沿:基因编辑和生物技术的伦理挑战",
    61. desc: "研究生命科学领域的最新发展,聚焦基因编辑和生物技术的伦理考量,探讨科技前沿的道德挑战。"
    62. },
    63. {
    64. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679045057_thumb.jpg",
    65. title: "加密货币与区块链:重塑全球金融体系的力量",
    66. desc: "解析加密货币和区块链技术对金融体系的颠覆作用,重新定义了全球金融交易方式。"
    67. },
    68. {
    69. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679044716_thumb.jpg",
    70. title: "量子计算与量子技术应用的前沿探索",
    71. desc: "深入研究量子计算和量子技术的前沿,展示这一领域的创新及其应用前景。"
    72. },
    73. {
    74. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679044779_thumb.jpg",
    75. title: "气候变化缓解的复杂性:全球视角下的挑战与机遇",
    76. desc: "探讨应对气候变化的复杂性,强调全球合作,突出应对挑战所蕴含的机遇。"
    77. },
    78. {
    79. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679044956_thumb.jpg",
    80. title: "虚拟现实与医疗保健的交汇:革命性地改变患者护理",
    81. desc: "介绍虚拟现实技术如何在医疗领域革命性地改善患者护理和治疗方法。"
    82. },
    83. {
    84. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679044607_thumb.jpg",
    85. title: "生物工程的突破:改变医学和人类增强的科技",
    86. desc: "研究生物工程领域的创新,关注其在医学和人类增强领域的重要作用。"
    87. },
    88. {
    89. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679045083_thumb.jpg",
    90. title: "社交媒体的演进及其对沟通和社会的影响",
    91. desc: "追溯社交媒体的发展历程,探讨其对人际沟通和社会动态的广泛影响。"
    92. },
    93. {
    94. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679044643_thumb.jpg",
    95. title: "元宇宙时代:在工作、教育和娱乐的虚拟世界中导航",
    96. desc: "介绍元宇宙时代,强调虚拟世界在工作、教育和娱乐中的多样应用。"
    97. },
    98. {
    99. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679044936_thumb.jpg",
    100. title: "通用人工智能:人类是否准备好面对超智能机器?",
    101. desc: "研究通用人工智能的发展,引发思考人类面对超级智能机器的准备程度。"
    102. },
    103. {
    104. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679045159_thumb.jpg",
    105. title: "超越火星:人类太空探索和星际旅行的未来",
    106. desc: "展望人类在太空探索领域的未来,探讨星际旅行的潜力和挑战。"
    107. }
    108. ];
    109. this.$nextTick(() => {
    110. this.initValue(0);
    111. });
    112. },
    113. computed: {
    114. /* 计算列宽 */
    115. widthCalc() {
    116. return `${100 / this.flowData.column - this.flowData.columnSpace}%`;
    117. },
    118. /* 计算 margin 外边距 */
    119. marginCalc() {
    120. const columnWidth = 100 / this.flowData.column - this.flowData.columnSpace;
    121. return `${(100 - columnWidth.toFixed(5) * this.flowData.column) / (this.flowData.column - 1)}%`;
    122. }
    123. },
    124. methods: {
    125. /* 获取最小值的对象 */
    126. getMinObj(a, s) {
    127. let m = a[0][s];
    128. let mo = a[0];
    129. for (let i = a.length - 1; i >= 0; i--) {
    130. if (a[i][s] < m) m = a[i][s];
    131. }
    132. mo = a.filter(i => i[s] === m);
    133. return mo[0];
    134. },
    135. /* 计算每列的高度 */
    136. getMinColumnHeight() {
    137. return new Promise(resolve => {
    138. const heightArr = [];
    139. for (let i = 1; i <= this.flowData.column; i++) {
    140. uni
    141. .createSelectorQuery()
    142. .in(this)
    143. .select(`#cont_${i}`)
    144. .boundingClientRect(res => {
    145. heightArr.push({ column: i, height: res.height });
    146. })
    147. .exec(() => {
    148. if (this.flowData.column <= heightArr.length) {
    149. resolve(this.getMinObj(heightArr, "height"));
    150. }
    151. });
    152. }
    153. });
    154. },
    155. /* 初始化瀑布流数据 */
    156. async initValue(i) {
    157. if (i >= this.flowData.list.length) return false;
    158. const minHeightRes = await this.getMinColumnHeight();
    159. this.flowData[`column_${minHeightRes.column}`].push({
    160. ...this.flowData.list[i],
    161. index: i
    162. });
    163. },
    164. /* 图片加载完成 */
    165. imgLoad(e) {
    166. const i = e.target.dataset.item.index;
    167. this.initValue(i + 1); // 加载下一条数据
    168. },
    169. /* 图片加载失败 */
    170. imgError(e) {
    171. const i = e.target.dataset.item.index;
    172. this.initValue(i + 1); // 加载下一条数据
    173. }
    174. }
    175. };
    176. script>
    177. <style lang="scss" scoped>
    178. .container {
    179. padding: 20rpx;
    180. .cont-box {
    181. $borderRadius: 12rpx;
    182. float: left;
    183. .item-box {
    184. width: 100%;
    185. padding-bottom: 20rpx;
    186. margin-bottom: 30rpx;
    187. border-radius: $borderRadius;
    188. box-shadow: 0rpx 3rpx 6rpx rgba(0, 46, 37, 0.08);
    189. .img-tip {
    190. width: 100%;
    191. border-radius: $borderRadius $borderRadius 0 0;
    192. }
    193. .tit-tip {
    194. text-align: justify;
    195. font-size: 30rpx;
    196. padding: 10rpx 20rpx 0;
    197. font-weight: 900;
    198. }
    199. .desc-tip {
    200. text-align: justify;
    201. font-size: 26rpx;
    202. padding: 5rpx 20rpx 0;
    203. margin-top: 10rpx;
    204. }
    205. }
    206. }
    207. }
    208. /* 多行省略 */
    209. .multi-line-omit {
    210. word-break: break-all; // 允许单词内自动换行,如果一个单词很长的话
    211. text-overflow: ellipsis; // 溢出用省略号显示
    212. overflow: hidden; // 超出的文本隐藏
    213. display: -webkit-box; // 作为弹性伸缩盒子模型显示
    214. -webkit-line-clamp: 2; // 显示的行
    215. -webkit-box-orient: vertical; // 设置伸缩盒子的子元素排列方式--从上到下垂直排列
    216. }
    217. /* 单行省略 */
    218. .one-line-omit {
    219. width: 100%; // 宽度100%:1vw等于视口宽度的1%;1vh等于视口高度的1%
    220. white-space: nowrap; // 溢出不换行
    221. overflow: hidden; // 超出的文本隐藏
    222. text-overflow: ellipsis; // 溢出用省略号显示
    223. }
    224. style>

    vue3 版本

    1. <template>
    2. <view class="container">
    3. <view
    4. :id="`cont_${index + 1}`"
    5. class="cont-box"
    6. :style="{ width: widthCalc, 'margin-left': index === 0 ? 0 : marginCalc }"
    7. v-for="(numVal, index) in flowData.column"
    8. :key="numVal"
    9. >
    10. <view class="item-box" v-for="(item, j) in flowData[`column_${index + 1}`]" :key="j">
    11. <image class="img-tip" :src="item.imgUrl" mode="widthFix" lazy-load @load="imgLoad(item)" @error="imgError(item)" />
    12. <view class="tit-tip multi-line-omit">{{ item.title }}view>
    13. <view class="desc-tip multi-line-omit">{{ item.desc }}view>
    14. view>
    15. view>
    16. view>
    17. template>
    18. <script setup>
    19. import { reactive, computed, getCurrentInstance, onMounted } from "vue";
    20. const _this = getCurrentInstance();
    21. const flowData = reactive({
    22. list: [], // 数据值
    23. column: 2, // 瀑布列数
    24. columnSpace: 2 // 瀑布列宽间距
    25. });
    26. /* 数据赋值 */
    27. flowData.list = [
    28. {
    29. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679045108_thumb.jpg",
    30. title: "自动驾驶汽车对交通和城市规划的未来影响与挑战",
    31. desc: "分析自动驾驶汽车对未来交通和城市规划的潜在影响,探讨相关挑战。"
    32. },
    33. {
    34. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679044581_thumb.jpg",
    35. title: "可持续城市发展:构建环保城市的策略和实践",
    36. desc: "分析建设可持续城市的战略和实际方法,强调环保、资源利用和城市规划的重要性。"
    37. },
    38. {
    39. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679045190_thumb.jpg",
    40. title: "消灭传染病:全球卫生领域的挑战与创新",
    41. desc: "探讨在全球范围内消灭传染病的挑战,突出卫生领域的创新方法。"
    42. },
    43. {
    44. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679044667_thumb.jpg",
    45. title: "人工智能与机器学习:颠覆性技术对未来的巨大影响",
    46. desc: "探讨人工智能和机器学习如何在多个领域引发革命性变革,从工业到医疗,对未来产生深远影响。"
    47. },
    48. {
    49. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679044562_thumb.jpg",
    50. title: "生命科学的新前沿:基因编辑和生物技术的伦理挑战",
    51. desc: "研究生命科学领域的最新发展,聚焦基因编辑和生物技术的伦理考量,探讨科技前沿的道德挑战。"
    52. },
    53. {
    54. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679045057_thumb.jpg",
    55. title: "加密货币与区块链:重塑全球金融体系的力量",
    56. desc: "解析加密货币和区块链技术对金融体系的颠覆作用,重新定义了全球金融交易方式。"
    57. },
    58. {
    59. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679044716_thumb.jpg",
    60. title: "量子计算与量子技术应用的前沿探索",
    61. desc: "深入研究量子计算和量子技术的前沿,展示这一领域的创新及其应用前景。"
    62. },
    63. {
    64. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679044779_thumb.jpg",
    65. title: "气候变化缓解的复杂性:全球视角下的挑战与机遇",
    66. desc: "探讨应对气候变化的复杂性,强调全球合作,突出应对挑战所蕴含的机遇。"
    67. },
    68. {
    69. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679044956_thumb.jpg",
    70. title: "虚拟现实与医疗保健的交汇:革命性地改变患者护理",
    71. desc: "介绍虚拟现实技术如何在医疗领域革命性地改善患者护理和治疗方法。"
    72. },
    73. {
    74. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679044607_thumb.jpg",
    75. title: "生物工程的突破:改变医学和人类增强的科技",
    76. desc: "研究生物工程领域的创新,关注其在医学和人类增强领域的重要作用。"
    77. },
    78. {
    79. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679045083_thumb.jpg",
    80. title: "社交媒体的演进及其对沟通和社会的影响",
    81. desc: "追溯社交媒体的发展历程,探讨其对人际沟通和社会动态的广泛影响。"
    82. },
    83. {
    84. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679044643_thumb.jpg",
    85. title: "元宇宙时代:在工作、教育和娱乐的虚拟世界中导航",
    86. desc: "介绍元宇宙时代,强调虚拟世界在工作、教育和娱乐中的多样应用。"
    87. },
    88. {
    89. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679044936_thumb.jpg",
    90. title: "通用人工智能:人类是否准备好面对超智能机器?",
    91. desc: "研究通用人工智能的发展,引发思考人类面对超级智能机器的准备程度。"
    92. },
    93. {
    94. imgUrl: "https://www.logosc.cn/uploads/resources/2023/03/17/1679045159_thumb.jpg",
    95. title: "超越火星:人类太空探索和星际旅行的未来",
    96. desc: "展望人类在太空探索领域的未来,探讨星际旅行的潜力和挑战。"
    97. }
    98. ];
    99. /* 初始化每一列的数据 */
    100. for (let i = 1; i <= flowData.column; i++) {
    101. flowData[`column_${i}`] = [];
    102. }
    103. /* 生命周期函数-实例被挂载后调用 */
    104. onMounted(() => {
    105. initValue(0);
    106. });
    107. /* 计算列宽 */
    108. const widthCalc = computed(() => {
    109. return `${100 / flowData.column - flowData.columnSpace}%`;
    110. });
    111. /* 计算 margin 外边距 */
    112. const marginCalc = computed(() => {
    113. const columnWidth = 100 / flowData.column - flowData.columnSpace;
    114. return `${(100 - columnWidth.toFixed(5) * flowData.column) / (flowData.column - 1)}%`;
    115. });
    116. /* 获取最小值的对象 */
    117. const getMinObj = (a, s) => {
    118. let m = a[0][s];
    119. let mo = a[0];
    120. for (let i = a.length - 1; i >= 0; i--) {
    121. if (a[i][s] < m) m = a[i][s];
    122. }
    123. mo = a.filter(i => i[s] === m);
    124. return mo[0];
    125. };
    126. /* 计算每列的高度 */
    127. function getMinColumnHeight() {
    128. return new Promise(resolve => {
    129. const heightArr = [];
    130. for (let i = 1; i <= flowData.column; i++) {
    131. uni
    132. .createSelectorQuery()
    133. .in(_this)
    134. .select(`#cont_${i}`)
    135. .boundingClientRect(res => {
    136. heightArr.push({ column: i, height: res.height });
    137. })
    138. .exec(() => {
    139. if (flowData.column <= heightArr.length) {
    140. resolve(getMinObj(heightArr, "height"));
    141. }
    142. });
    143. }
    144. });
    145. }
    146. /* 初始化瀑布流数据 */
    147. async function initValue(i) {
    148. if (i >= flowData.list.length) return false;
    149. const minHeightRes = await getMinColumnHeight();
    150. flowData[`column_${minHeightRes.column}`].push({
    151. ...flowData.list[i],
    152. index: i
    153. });
    154. }
    155. /* 图片加载完成 */
    156. function imgLoad(item) {
    157. const i = item.index;
    158. initValue(i + 1); // 加载下一条数据
    159. }
    160. /* 图片加载失败 */
    161. function imgError(item) {
    162. const i = item.index;
    163. initValue(i + 1); // 加载下一条数据
    164. }
    165. script>
    166. <style lang="scss" scoped>
    167. .container {
    168. padding: 20rpx;
    169. .cont-box {
    170. $borderRadius: 12rpx;
    171. float: left;
    172. .item-box {
    173. width: 100%;
    174. padding-bottom: 20rpx;
    175. margin-bottom: 30rpx;
    176. border-radius: $borderRadius;
    177. box-shadow: 0rpx 3rpx 6rpx rgba(0, 46, 37, 0.08);
    178. .img-tip {
    179. width: 100%;
    180. border-radius: $borderRadius $borderRadius 0 0;
    181. }
    182. .tit-tip {
    183. text-align: justify;
    184. font-size: 30rpx;
    185. padding: 10rpx 20rpx 0;
    186. font-weight: 900;
    187. }
    188. .desc-tip {
    189. text-align: justify;
    190. font-size: 26rpx;
    191. padding: 5rpx 20rpx 0;
    192. margin-top: 10rpx;
    193. }
    194. }
    195. }
    196. }
    197. /* 多行省略 */
    198. .multi-line-omit {
    199. word-break: break-all; // 允许单词内自动换行,如果一个单词很长的话
    200. text-overflow: ellipsis; // 溢出用省略号显示
    201. overflow: hidden; // 超出的文本隐藏
    202. display: -webkit-box; // 作为弹性伸缩盒子模型显示
    203. -webkit-line-clamp: 2; // 显示的行
    204. -webkit-box-orient: vertical; // 设置伸缩盒子的子元素排列方式--从上到下垂直排列
    205. }
    206. /* 单行省略 */
    207. .one-line-omit {
    208. width: 100%; // 宽度100%:1vw等于视口宽度的1%;1vh等于视口高度的1%
    209. white-space: nowrap; // 溢出不换行
    210. overflow: hidden; // 超出的文本隐藏
    211. text-overflow: ellipsis; // 溢出用省略号显示
    212. }
    213. style>
  • 相关阅读:
    Spring框架
    《asp.net core 3 高级编程(第8版)》学习笔记 02
    【跨级组件的通信&组件的生命周期&React的常用特性】
    springBoot集成mybatis-plus
    数据库系统原理 绪论
    【生成式网络】入门篇(三):Style Transfer 的 代码和结果记录
    Git:使用conda命令切换虚拟环境
    从零开始学JAVA(05):面向对象编程--01
    Python异步编程小解一
    Linux 用户和组
  • 原文地址:https://blog.csdn.net/AdminGuan/article/details/133356392