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

溫馨提示×

溫馨提示×

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

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

CSS3中transition如何實現通知消息輪播條

發布時間:2021-03-17 10:24:40 來源:億速云 閱讀:343 作者:小新 欄目:web開發

這篇文章主要介紹CSS3中transition如何實現通知消息輪播條,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

CSS3中transition如何實現通知消息輪播條

Vue 版本,拷貝到文件即可使用

<template>
  <!-- 輪播視圖 -->
  <div id="carousel-view">
    <!-- 輪播列表 -->
    <ul id="carousel-list-view" :class="{ 'carousel-animated':isAnimated }">
      <li v-for="(item, index) in dataSource" :key="index">{{ item }}</li>
    </ul>
  </div>
</template>

<script>
export default {
  data () {
    return {
      // 開啟動畫
      isAnimated: false,
      // 輪播數據
      dataSource: ['dzm', 'xyq', '啊啊']
    }
  },
  created () {
    // 開啟定時器
    setInterval(this.scroll, 1000)
  },
  methods: {
    // 滾動動畫
    scroll () {
      // 開啟動畫
      this.isAnimated = true
      // 倒計時動畫時間
      setTimeout(() => {
        // 將數組第一個元素添加到數組尾部
        this.dataSource.push(this.dataSource[0])
        // 移除數組第一個元素
        this.dataSource.shift()
        // 關閉動畫
        this.isAnimated = false
        // 動畫時間需要與 .carousel-animated 中設置的時間一致
      }, 500)
    }
  }
}
</script>

<style scoped>
#carousel-view {
  width: 100%;
  height: 32px;
  background-color: red;
  overflow: hidden;
}
#carousel-list-view {
  margin: 0;
  padding: 0;
  list-style: none;
}
#carousel-list-view li {
  line-height: 32px;
  height: 32px;
}
.carousel-animated {
  transition: transform 0.5s;
  transform: translateY(-32px);
}
</style>

以上是“CSS3中transition如何實現通知消息輪播條”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

嘉兴市| 祁门县| 班戈县| 峨山| 六盘水市| 临清市| 灯塔市| 海淀区| 曲阳县| 增城市| 乌拉特中旗| 曲阳县| 渭源县| 郯城县| 红河县| 深泽县| 盐边县| 内丘县| 增城市| 石景山区| 团风县| 密山市| 利川市| 工布江达县| 淮北市| 巨野县| 新昌县| 紫阳县| 招远市| 天门市| 江阴市| 昂仁县| 响水县| 大姚县| 嘉定区| 五原县| 堆龙德庆县| 武平县| 大荔县| 盐边县| 宣化县|