小編給大家分享一下微信小程序內實現做出跑馬燈效果的方法,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
創新互聯公司專業IDC數據服務器托管提供商,專業提供成都服務器托管,服務器租用,成都棕樹電信機房,成都棕樹電信機房,成都多線服務器托管等服務器托管服務。一:功能介紹及講解
實現的跑馬燈(跑馬燈里面顯示文章的title)的效果,并在右側有個查看文章的按鈕,按鈕綁定當前的跑馬燈信息的id,點擊按鈕后根據id跳轉到相應的文章詳情頁;
這里值得注意的點是我用了swiper組件的 bindchange 事件來獲取到當前信息的數組下標,實現了動態改變查看按鈕綁定信息id值的效果;
如果還有不懂的地方歡迎加入(173683895)微信小程序開發交流群。
二:效果圖:
三:完整源碼
1.封裝成一個組件:
<!-- //滾動 --> <template name="roll"> <block> <navigator url='../details/details2/detail2?artical_id={{newsId}}'> <view class='chakan'>查看</view> </navigator> <view class='sx_lunbo page_row'> <text class='red'>公告</text> <swiper class='sx_swiper page_row' autoplay interval="5000" duration="3000" bindchange="newsId" data-newsId='{{item.id}}' circular> <swiper-item wx:for="{{news}}" wx:key=""> <view class='reds'>{{item.title}} </view> </swiper-item> </swiper> </view> </block> </template>
.sx_lunbo { width: 100%; height: 60rpx; border-bottom: solid 1px #eee; } .chakan{ padding-left: 25rpx; right: 20rpx; clear: both; position:absolute; height: 40rpx; margin-top: 10rpx; color: #f63; border:solid 1px #f63; border-radius:5rpx; padding: 0rpx 10rpx 0rpx 10rpx; font-size: 28rpx } .sx_swiper { width: 550rpx; margin-top: 10rpx; } .sx_swiper swiper-item{ height: 40rpx } .reds { overflow: hidden; text-overflow: ellipsis; white-space:nowrap; width:500rpx; font-size: 28rpx; height: 40rpx; } .red { font-size: 24rpx; color: white; width: 60rpx; height: 40rpx; line-height: 40rpx; background: blue; padding-left: 10rpx; margin: 10rpx; border-radius: 10rpx; }
2.在頁面調用:
<import src="../template/roll/roll.wxml" /> <template is="roll" data="{{news,newsId}}" />
@import "../template/roll/roll.wxss";
newsId: function (e) { var that = this var item = e.detail.current; this.setData({ newsId:that.data.news[item].id }) },
3.news的數據:
看完了這篇文章,相信你對“微信小程序內實現做出跑馬燈效果的方法”有了一定的了解,如果想了解更多相關知識,歡迎關注創新互聯行業資訊頻道,感謝各位的閱讀!
本文標題:微信小程序內實現做出跑馬燈效果的方法-創新互聯
標題路徑:http://m.newbst.com/article14/dpeige.html
成都網站建設公司_創新互聯,為您提供定制網站、App開發、手機網站建設、網站設計、網站排名、軟件開發
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯