文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

微信小程序实现轮播图标题跑马灯

2024-04-02 19:55

关注

本文实例为大家分享了微信小程序实现轮播图标题跑马灯的具体代码,供大家参考,具体内容如下

微信小程序做轮播图,轮播图下的标题如果不长不需要跑马灯效果,过长的无法显示全的则添加跑马灯效果

<swiper class="swiper" current="0" bindchange="onSlideChange">
    <swiper-item wx:for='{{carouselImgArr}}' wx:key='index'>
      <image 
          src='{{item.image}}' 
          mode='heightFix'
          class="swiper-item-img">
      </image>
      <view class="swiper-item-tit" wx:if='{{item.title}}'>
        <view class="swiper-tit-inner {{(currImgIndex - 1) == index ? 'active' : ''}}" 
              style='transform:translate({{ ((currImgIndex - 1) == index ? carouselTitLeft : 0) + "px" }})'>
          {{item.title}}
        </view>
      </view>
    </swiper-item>
</swiper>
.swiper{
  position: relative;
  height: 430rpx;
  padding: 0px;
  margin: 0px;
}
.swiper image{
  height: 430rpx;
  position: absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
}
.swiper-item-tit{
  position: absolute;
  bottom: 0rpx;
  left:0rpx;
  z-index: 2;
  height: 80rpx;
  line-height: 80rpx;
  color:#fff;
  width:100%;
  
  
  background-color: rgba(0,0,0,0.5);
}
.swiper-item-tit .swiper-tit-inner{
  text-align: center;
  white-space: nowrap;
} 
data: {
    carouselImgArr: [{
        image:'../../image/1.png',title:'标题',
    },{
        image:'../../image/1.png',title:'标题标题标题标题标题标题标题标题标题',
    },{
        image:'../../image/1.png',title:'标题',
    } ],
    carouselTitleLength:[2,18,2],// 轮播图标题的文字长度
    carouselTitLeft:0,
    currImgIndex: 1,
    windowWidth: wx.getSystemInfoSync().windowWidth
  },
onSlideChange(e) {
    this.setData({
      currImgIndex: e.detail.current + 1,
      carouselTitLeft: 0
    });
    this.initMarqueen();
  },
  initMarqueen() {
    clearInterval(marqueenTimer);
    var self = this;
    var boxWidth,textWidth;
    var query = wx.createSelectorQuery();
    // query.select('.swiper-item-tit').fields({size:true},function(res){
    //   boxWidth = res.width;
    // }).exec();
    // query.select('.active').fields({size:true},function(res){
    //   textWidth = res.width;
    // }).exec();
    setTimeout(function(){
      let boxWidth = self.data.windowWidth;// 屏幕尺寸宽等于字体box宽,所以这里用屏幕宽替代了query获取的宽
      let scale = boxWidth / 375;// 以屏幕尺寸为375为标准(375下字体宽约为14),根据屏幕尺寸计算单个字体的宽度
    // 不知道为什么用query 获取的textWidth始终等于boxWidth的宽度,不得已只能使用文字长度乘以文字宽度来计算boxWidth。而
      let textWidth = self.data.carouselTitleLength[self.data.currImgIndex - 1] * (14*scale);
      console.log(scale,boxWidth,textWidth);
      if (textWidth - 3*scale > boxWidth) {// 减去3*scale防止textWidth只多出来一点点导致文字左右震荡
        let stayTime = 1000;
        let endStay = true;
        marqueenTimer = setInterval(function(){
          let currLeft = self.data.carouselTitLeft;
          if (stayTime !== 0) {
            stayTime = stayTime - 30;
            console.log('stay')
          } else if (currLeft > boxWidth - textWidth) {
            self.setData({
              carouselTitLeft: currLeft - 2
            });
          } else {
            if (endStay) {// 跑马灯结尾停留1s;
              endStay = false;
              stayTime = 1200;
              return;
            }
            self.setData({
              carouselTitLeft: 0
            });
            stayTime = 1200;// 回到跑马灯开头再停留1s;
            endStay = true;
          }
        },100)
      }
    },100);
  },

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

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-前端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯