jquery標題左右移動動畫

標題會在紅框範圍內來回移動

這裏寫圖片描述

html和css代碼
<div class="menu-notice" @click="check_cart">
        <div class="menu-notice-logo"></div>
        <div class="menu-notice-title" ref="noticeTitle">
          {{storeinfo[0] ? storeinfo[0]['name'] : ''}}
        </div>
      </div>
.menu-container .menu-notice{
  height: 45px;
  line-height: 45px;
  background: #fff9df;
  position: relative;
}
.menu-container .menu-notice:after{
  content: "";
  display: block;
  width: 0;
  height: 0;
  visibility: hidden;
  clear: both;
}
.menu-notice .menu-notice-logo,.menu-notice .menu-notice-title{
  float: left;
  height: 45px;
}
.menu-notice .menu-notice-logo{
  width: 50px;
  background: url("../../assets/notice2.png") no-repeat center center;
  background-size: 50%;
}
.menu-notice .menu-notice-title{
  position: absolute;
  left: 50px;
  top: 0px;
  font-size: 15px;
  color: #666;
  font-weight: 600;
}
jquery代碼
blockMove: function () {
      let that = this;
      let noticeTitle = this.$refs.noticeTitle.offsetWidth ? this.$refs.noticeTitle.offsetWidth : 100;
      let menuContainer = this.$refs.menuContainer.clientWidth - (20 + noticeTitle);
      if($('.menu-notice-title').position().left == 50){
          $('.menu-notice-title').stop().animate({
            left: menuContainer
          },15000,function () {
            that.blockMove();
          })
      }else{
          $('.menu-notice-title').stop().animate({
            left: '50px'
          },15000,function () {
            that.blockMove();
          })
      }
    }
發佈了41 篇原創文章 · 獲贊 13 · 訪問量 14萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章