跑馬燈效果比較常見,通常作電商類的小程序,都會用到,因此代碼君今天特意寫一篇文章,來教一下你們,如何去實現跑馬燈效果,下面是代碼君實現的效果,能夠先看一下!css
製做方式很簡單,先方上代碼,後面會對代碼詳細講解小程序
<!-- 跑馬燈效果 -->
<view class="example">
<view class="marquee_box">
<view class="marquee_text" style="{{orientation}}:{{marqueeDistance}}px;font-size: {{size}}px;">
<image src="{{adUrl}}" class='ad-image' />{{text}}
</view>
</view>
</view>
複製代碼
界面佈局很簡單,一個底部背景容器,加入一個廣播圖片和對應的跑馬燈文字微信小程序
.example {
display: block;
width: 100%;
height: 70rpx;
background-color: #f2f2f2;
line-height: 70rpx;
}
.marquee_box {
width: 100%;
position: relative;
}
.marquee_text {
white-space: nowrap;
position: absolute;
top: 0;
display: flex;
flex-direction: row;
}
.ad-image {
width: 40rpx;
height: 40rpx;
margin-right: 10rpx;
margin-top: 15rpx;
}
複製代碼
樣式就這些,這裏代碼君要帶着你們回顧一下之前教程裏講解的內容api
文字居中css樣式要如何設置?
只須要將屬性height與line-height設置成同樣高度便可bash
display屬性微信
Page({
data: {
text: '51淘甄貨,一個能夠省錢的購物平臺',
marqueePace: 1,//滾動速度
marqueeDistance: 0,//初始滾動距離
size: 14,
orientation: 'left',//滾動方向
interval: 20, // 時間間隔
adUrl: '../../images/ic_home_msg.png',
},
onShow: function () {
// 頁面顯示
var that = this;
var length = that.data.text.length * that.data.size;//文字長度
var windowWidth = wx.getSystemInfoSync().windowWidth;// 屏幕寬度
that.setData({
length: length,
windowWidth: windowWidth,
});
that.runMarquee();// 水平一行字滾動完了再按照原來的方向滾動
},
runMarquee: function () {
var that = this;
var interval = setInterval(function () {
//文字一直移動到末端
if (-that.data.marqueeDistance < that.data.length) {
that.setData({
marqueeDistance: that.data.marqueeDistance - that.data.marqueePace,
});
} else {
clearInterval(interval);
that.setData({
marqueeDistance: that.data.windowWidth
});
that.runMarquee();
}
}, that.data.interval);
}
})
複製代碼
js裏面須要講解的比較多xss
1. setInterval 計時器如何使用?函數
setInterval(function(){
console.log("interval")
},1000)
複製代碼
這個方法是微信小程序的api,直接使用便可,和正常的定時器同樣,setInterval須要傳入兩個參數,一個是回調的方法,另外一個是每隔多久執行一次,在此項目中,咱們用的是字段參數interval,值設置爲20佈局
2. settimeout和setinterval()這兩個都是騰訊提供的API,他們有什麼區別嗎?學習
3.跑馬燈實現原理
以上就是跑馬燈效果的整個流程,原理也不是很難,一個計時器,輕鬆就能夠實現,若是還想學習更多教程,關注《代碼集中營》公衆號獲取最新教程