91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微信小程序中組件marquee的作用是什么

發布時間:2022-04-12 16:57:01 來源:億速云 閱讀:312 作者:iii 欄目:編程語言

這篇文章主要介紹“微信小程序中組件marquee的作用是什么”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“微信小程序中組件marquee的作用是什么”文章能幫助大家解決問題。

微信小程序組件 marquee實例詳解

1. marquee標簽

html是有marquee標簽的,可以實現跑馬燈效果,但小程序沒有,所以要實現。這里考慮使用css3的animation實現。

html的marquee是這樣使用的。

<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" >
  <view class="marquee_text">{{marquee.text}}</view>
</view>

傳入wxml的是個json對象

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

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

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);

關于“微信小程序中組件marquee的作用是什么”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宜川县| 吉林省| 微山县| 满洲里市| 额济纳旗| 格尔木市| 郸城县| 定南县| 平凉市| 攀枝花市| 桐梓县| 凤阳县| 缙云县| 武鸣县| 莱西市| 合江县| 抚宁县| 西林县| 宁海县| 泸溪县| 左贡县| 盘锦市| 峨眉山市| 乾安县| 崇左市| 锡林郭勒盟| 垦利县| 洛川县| 武安市| 临泉县| 浦北县| 山阳县| 阿合奇县| 天津市| 丹阳市| 巴东县| 扶风县| 横山县| 府谷县| 兴海县| 贵定县|