微信小程序-橫向滑動scroll-view隱藏滾動條
更新時間:2017年04月20日 08:33:15 作者:Mr_Sparta
本篇文章主要介紹了微信小程序-橫向滑動scroll-view隱藏滾動條的相關(guān)知識。具有很好的參考價值。下面跟著小編一起來看下吧
wxml
<scroll-view class="recommend_scroll_x_box" scroll-x="true"> <view class="recommend_hot_box" wx:for="{{hotList}}"> <image src="{{item.pic}}" class="recommend_hot_image"></image> </view> </scroll-view>
wxss
.recommend_scroll_x_box { height: 245rpx; white-space: nowrap; display: flex; } ::-webkit-scrollbar { width: 0; height: 0; color: transparent; } .recommend_hot_box { width: 230rpx; height: 245rpx; margin-right: 24rpx; display: inline-block; } .recommend_hot_image { width: 230rpx; height: 143rpx; }
js
Page({ data: { hotList: [ { pic: '/images/example2.png', title: '玻璃棧道', desc: '22W人去過' }, { pic: '/images/example2.png', title: '玻璃棧道', desc: '22W人去過' }, { pic: '/images/example2.png', title: '玻璃棧道', desc: '22W人去過' }, { pic: '/images/example2.png', title: '玻璃棧道', desc: '22W人去過' }, { pic: '/images/example2.png', title: '玻璃棧道', desc: '22W人去過' } ] }
以上就是本文的全部內(nèi)容,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作能帶來一定的幫助,同時也希望多多支持腳本之家!
您可能感興趣的文章:
相關(guān)文章
JavaScript中this的四個綁定規(guī)則總結(jié)
相信大家都知道,ES5及之前時代的JavaScript中this的綁定機(jī)制是讓很多開發(fā)者頭疼不已的事情。this 的綁定變化多端,讓筆者也吃了不少虧。所以本文總結(jié)了this的四條綁定規(guī)則,在此記錄,以防自己遺忘,也方便他人參考借鑒。下面來一起看看吧。2016-09-09js提交form表單,并傳遞參數(shù)的實現(xiàn)方法
下面小編就為大家?guī)硪黄猨s提交form表單,并傳遞參數(shù)的實現(xiàn)方法。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2016-05-05js實現(xiàn)點擊后將文字或圖片復(fù)制到剪貼板的方法
這篇文章主要介紹了js實現(xiàn)點擊后將文字或圖片復(fù)制到剪貼板的方法,功能非常實用,需要的朋友可以參考下2014-08-08