您好,登錄后才能下訂單哦!
怎么在Vue中使用better-scroll組件實現橫向滾動功能?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
better-scroll的滾動原理和瀏覽器原生滾動原理是一樣的,當子盒子的高度大于父盒子的高度,就會出現縱向滾動:
同理,如果子盒子的寬度大于父盒子的寬度,那么就會出現橫向滾動 ( 根本原理 )。
在Vue中使用better-scroll最需要注意的點就是必須等到頁面渲染完成再去執行BScroll的實例化,因為better-scroll必須要得到滾動區域的尺寸和父盒子的尺寸,來計算出是否能滾動,所以我們必須要對Vue的生命周期有一定的了解。
這里是一個小demo,通過這個demo你將會了解到如何使用better-scroll
<template> <div class="wrapper" ref="wrapper"> // 在vue中獲取dom元素最簡便的方法就是利用 this.$refs <ul class="content"> <li>...</li> <li>...</li> ... </ul> </div> </template> <script> import BScroll from 'better-scroll' //導入better-scroll export default { mounted() { this.$nextTick(() => { // 使用 this.$nextTick 為了確保組件已經渲染完畢 this.scroll = new Bscroll(this.$refs.wrapper, {}) // 實例化BScroll接受兩個參數,第一個為父盒子的dom節點 }) } } </script>
1. 效果圖對比
使用原生滾動:
使用better-scroll:
2. 代碼(請看注釋)
<template> <div class="recommand-wrap"> <div class="title"> <img class="title-img" src="https://imgs.qunarzz.com/piao/fusion/1711/16/bfbb9874e8f11402.png" alt="本周熱門榜單"> <span class="title-hotrec">本周熱門榜單</span> <span class="title-allrec">全部榜單</span> </div> <div ref="wrapper"> /* 這里是父盒子*/ <ul class="cont" ref="cont"> /* 這里是子盒子,即滾動區域*/ <li class="cont-item" v-for="item of recommendList" :key="item.id"> <div class="cont-img"> <img class="img" :src="item.url" :alt="item.text"> </div> <div class="cont-dest">{{item.text}}</div> <div class="cont-price"> <span class="price">¥{{item.price}}</span> <span>起</span> </div> </li> </ul> </div> </div> </template> <script> import BScroll from 'better-scroll' export default { name: 'HomeRecommand', props: { recommendList: { type: Array, required: true } }, components: { }, data () { return { } }, methods: { verScroll () { let width = this.recommendList.length * 110// 動態計算出滾動區域的大小,前面已經說過了,產生滾動的原因是滾動區域寬度大于父盒子寬度 this.$refs.cont.style.width = width + 'px' // 修改滾動區域的寬度 this.$nextTick(() => { if (!this.scroll) { this.scroll = new BScroll(this.$refs.wrapper, { startX: 0, // 配置的詳細信息請參考better-scroll的官方文檔,這里不再贅述 click: true, scrollX: true, scrollY: false, eventPassthrough: 'vertical' }) } else { this.scroll.refresh() //如果dom結構發生改變調用該方法 } }) } }, mounted () { this.$nextTick(() => { let timer = setTimeout(() => { // 其實我也不想寫這個定時器的,這相當于又嵌套了一層$nextTick,但是不這么寫會失敗 if (timer) { clearTimeout(timer) this.verScroll() } }, 0) }) } } </script> <style lang="scss" scoped> .recommand-wrap { height: 0; padding-bottom: 50%; margin-top: .2rem; background: #fff; padding-left: .24rem; width: 100%; .title { position: relative; height: 40px; display: flex; padding: 12px 0; box-sizing: border-box; .title-img { width: 15px; height: 15px; } .title-hotrec { font-size: 16px; margin-left: 4px; } .title-allrec { position: absolute; padding-top: 2px; font-size: 13px; right: 20px; color: gray; } } .cont { list-style: none; // overflow-x: scroll; white-space: nowrap; font-size: 12px; text-align: center; padding-right: .24rem; .cont-item { position: relative; display: inline-block; padding: .06rem 0 .2rem; width: 2rem; margin: 0 .1rem; .cont-img { overflow: hidden; width: 2rem; height: 0; padding-bottom: 100%; .img { width: 100%; } } .cont-dest { margin: .1rem 0; } .cont-price { .price { color: #ff8300; } } } } } </style>
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。