微信小程序組件之marquee

1. marquee標籤

html是有marquee標籤的,能夠實現跑馬燈效果,但小程序沒有,因此要實現。這裏考慮使用css3的animation實現。css

html的marquee是這樣使用的。html

<marquee direction="left" behavior="scroll" scrollamount="1" scrolldelay="0" loop="-1" width="200" height="50" bgcolor="#0099FF" hspace="10" vspace="10">
      hello world
</marquee>

2. wxml

<view class="marquee_container" style="--marqueeWidth--:{{-marquee.width}}em">
    <view class="marquee_text">{{marquee.text}}</view>
</view>

傳入wxml的是個json對象css3

marquee:{
    width:12,
    text:'hello world'
}

而那個奇怪的--marqueeWidth是給@keyframes傳的變量。內聯設置變量,css文件中也能夠獲取到該變量。json

3. wxss

@keyframes around {
    from {
      margin-left: 100%;
    }
    to {
      margin-left: var(--marqueeWidth--);// var接受傳入的變量
    }
  }

.marquee_container{
  background-color: #0099FF;
  height: 1.2em;
  position: relative;
  width: 100%;
}
.marquee_container:hover{
  animation-play-state: paused; // 不起做用
}
.marquee_text{
  display: inline-block;
  white-space: nowrap;
  animation-name: around;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function:linear;
}

4. js

export default {
  getWidth:(str)=>{
    return [].reduce.call(str, (pre, cur, index, arr) => {
      if (str.charCodeAt(index) > 255) {// charCode大於255是漢字
        pre++;
      } else {
        pre += 0.5;
      }
      return pre;
    }, 0);
  },
  getDuration:(str)=>{// 保留,根據文字長度設置時間
    return this.getWidth()/10;
  }
}

以上是組件的封裝。小程序

5. 使用

// wxml
<include src="../component/marquee/marquee.wxml" />
// wxss
@import "../component/marquee/marquee.wxss";
// js
import marquee from '../component/marquee/marquee.js';

var options = Object.assign(marquee, {
  data: {
    motto: 'Hello World',
    userInfo: {},
    marquee: { text: '你好,中國!hello,world!' }
  },
  onLoad: function () {
    // ...

    const str = this.data.marquee.text;
    const width = this.getWidth(str);
    console.log('width',width);
    this.setData({ [`${'marquee'}.width`]: width });
  }
});
Page(options);
相關文章
相關標籤/搜索