当前位置: 移动技术网 > IT编程>开发语言>JavaScript > 微信小程序实现文字无限轮播效果

微信小程序实现文字无限轮播效果

2019年01月07日  | 移动技术网IT编程  | 我要评论

本文实例为大家分享了微信小程序实现文字无限轮播展示的具体代码,供大家参考,具体内容如下

.js文件  onload中添加下列代码

var self = this;
var width = wx.getsysteminfosync().screenwidth;
function carousel_num() {

var animation = wx.createanimation({
transformorigin: "50% 50%",
duration: 5000,
timingfunction: "linear",
delay: 0
})
self.animation = animation
animation.translate3d(-width, 0, 100).step()
console.log("第一动画开始");
self.setdata({
animationdata_notice: animation.export(),
})
settimeout(function () {
var animation = wx.createanimation({
transformorigin: "50% 50%",
duration: 0,
timingfunction: "linear",
delay: 0
})
self.animation = animation
animation.translate3d(0, 0, 100).step()
console.log("第二动画开始");
self.setdata({
animationdata_notice: animation.export(),
})
settimeout(function () {
carousel_num();
}, 50)
}, 5000)
}
settimeout(function () {
carousel_num();
}, 100);

.wxml文件 添加如下:

<scroll-view class='scroll_notice'>
<view class='scroll_notice_item_bg' animation="{{animationdata_notice}}">
<view class="scroll_notice_item_bg">
<image class='scroll_notice_item_image' src='图片链接'></image>
<view class='scroll_notice_item'>全国快递本月底将陆续停运,各位请注意补货时间!</view>
</view>
<view class="scroll_notice_item_bg">
<image class='scroll_notice_item_image' src='图片链接'></image>
<view class='scroll_notice_item'>全国快递本月底将陆续停运,各位请注意补货时间!</view>
</view>
</view>
</scroll-view>

.wxss文件  添加如下:

.scroll_notice {
position: absolute;
left: 0px;
top: 0px;
width: 100%;
white-space: nowrap;
height: 65rpx;
background-color: #e6513e;
}

.scroll_notice_item_image {
position: absolute;
left: 0px;
top: 14rpx;
width: 49rpx;
height: 38rpx;
}

.scroll_notice_item {
margin-left: 61rpx;
margin-top: 14rpx;
height: 37rpx;
font-family: pingfangsc;
font-size: 26rpx;
font-weight: 500;
letter-spacing: 1rpx;
text-align: left;
color: #fff;
}

.scroll_notice_item_bg {
position: relative;
margin-left: 20rpx;
height: 100%;
display: inline-flex;
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持移动技术网。

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网