您好,登錄后才能下訂單哦!
這篇文章給大家介紹使用Vue怎么實現QQ左滑刪除組件功能,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
實現思路
具體實現思路如下:
布局方面我采用的是 rem + flex 布局,具體如何結構和樣式可以參考我的代碼,值得注意的是后面的刪除按鈕是我通過定位放在了每一行的最后,超出隱藏了而已
左滑和右滑是通過 touchstart 和 touchend 事件,通過判斷滑動開始和結束,水平方向 x 的偏移量,如果大于一定得閾值認為是左滑動,小于一定的閾值則認為是右滑動
左滑動和右滑動分別都是通過父級 li 元素的 translate 偏移量進行變化的,這里我的實現方式是提前聲明好樣式,通過改變當前父級 li 的 type 值,進行樣式切換
點擊某一個滑塊的時候,首先判斷當前所有的滑塊是否有處于 滑出狀態的 ,如果有,則必須先將所有的滑塊狀態還原,如果沒有,則點擊生效,我這里只是彈出一個 alter ,具體業務可以根據實際填寫
刪除相對簡單,當滑塊畫出后,出現刪除按鈕,點擊按鈕,拿到當前的數組索引值,通過數組的 splice 方法,刪除對應的數組值即可
具體實現
Html代碼
<div class="container"> <div class="page-title">滑動組件</div> <ul> <li class="list-item " v-for="(item,index) in list " data-type="0"> <div class="list-box" @touchstart.capture="touchStart" @touchend.capture="touchEnd" @click="skip"> <img class="list-img" :src="item.imgUrl" > <div class="list-content"> <p class="title">{{item.title}}</p> <p class="tips">{{item.tips}}</p> <p class="time">{{item.time}}</p> </div> </div> <div class="delete" @click="deleteItem" :data-index="index">刪除</div> </li> </ul> </div>
注意:我這里的數據全是本地 mock 的~
Css樣式代碼
.page-title{ text-align: center; font-size: 17px; padding: 10px 15px; position: relative; } .page-title:after{ content: " "; position: absolute; left: 0; bottom: 0; right: 0; height: 1px; border-bottom: 1px solid #ccc; color: #ccc; -webkit-transform-origin: 0 100%; transform-origin: 0 100%; -webkit-transform: scaleY(0.5); transform: scaleY(0.5); z-index: 2; } .list-item{ position: relative; height: 1.6rem; -webkit-transition: all 0.2s; transition: all 0.2s; } .list-item[data-type="0"]{ transform: translate3d(0,0,0); } .list-item[data-type="1"]{ transform: translate3d(-2rem,0,0); } .list-item:after{ content: " "; position: absolute; left: 0.2rem; bottom: 0; right: 0; height: 1px; border-bottom: 1px solid #ccc; color: #ccc; -webkit-transform-origin: 0 100%; transform-origin: 0 100%; -webkit-transform: scaleY(0.5); transform: scaleY(0.5); z-index: 2; } .list-box{ padding: 0.2rem; background: #fff; display: flex; align-items: center; -webkit-box-sizing: border-box; box-sizing: border-box; justify-content: flex-end; position: absolute; top: 0; right: 0; bottom: 0; left: 0; font-size: 0; } .list-item .list-img{ display: block; width: 1rem; height: 1rem; } .list-item .list-content{ padding: 0.1rem 0 0.1rem 0.2rem; position: relative; flex: 1; flex-direction: column; align-items: flex-start; justify-content: center; overflow: hidden; } .list-item .title{ display: block; color: #333; overflow: hidden; font-size: 15px; font-weight: bold; text-overflow: ellipsis; white-space: nowrap; } .list-item .tips{ display: block; overflow: hidden; font-size: 12px; color: #999; line-height: 20px; text-overflow: ellipsis; white-space: nowrap; } .list-item .time{ display: block; font-size: 12px; position: absolute; right: 0; top: 0.1rem; color: #666; } .list-item .delete{ width: 2rem; height: 1.6rem; background: #ff4949; font-size: 17px; color: #fff; text-align: center; line-height: 1.6rem; position: absolute; top:0; right: -2rem; }
這是核心的樣式代碼,還有部分樣式重置代碼放在了 App.vue 里,通過計算根節點 html 的字體大小的腳本我放在了 index.html 中~
js代碼
export default{ name: 'index', data () { return { list : [ { title : 'Chrome更新了' , imgUrl : './static/images/Chrome.png' , tips : '不再支持Flash視頻播放' , time : '上午 8:30' }, { title : '電影新資訊' , imgUrl : './static/images/Sina.png' , tips : '電影《紅海行動》上映以來票房暴漲,很多國人表示對國產電影有了新的改觀' , time : '上午 12:00' }, { title : '聚焦兩會·共筑中國夢' , imgUrl : './static/images/video.png' , tips : '習近平代表的兩會故事' , time : '下午 17:45' }, { title : '微信團隊' , imgUrl : './static/images/Wechat.png' , tips : '您的帳號有異常登錄,如非本人操作,請及時修改密碼' , time : '昨天' } ], startX : 0 , endX : 0 , } }, methods : { //跳轉 skip(){ if( this.checkSlide() ){ this.restSlide(); }else{ alert('You click the slide!') } }, //滑動開始 touchStart(e){ // 記錄初始位置 this.startX = e.touches[0].clientX; }, //滑動結束 touchEnd(e){ // 當前滑動的父級元素 let parentElement = e.currentTarget.parentElement; // 記錄結束位置 this.endX = e.changedTouches[0].clientX; // 左滑 if( parentElement.dataset.type == 0 && this.startX - this.endX > 30 ){ this.restSlide(); parentElement.dataset.type = 1; } // 右滑 if( parentElement.dataset.type == 1 && this.startX - this.endX < -30 ){ this.restSlide(); parentElement.dataset.type = 0; } this.startX = 0; this.endX = 0; }, //判斷當前是否有滑塊處于滑動狀態 checkSlide(){ let listItems = document.querySelectorAll('.list-item'); for( let i = 0 ; i < listItems.length ; i++){ if( listItems[i].dataset.type == 1 ) { return true; } } return false; }, //復位滑動狀態 restSlide(){ let listItems = document.querySelectorAll('.list-item'); // 復位 for( let i = 0 ; i < listItems.length ; i++){ listItems[i].dataset.type = 0; } }, //刪除 deleteItem(e){ // 當前索引 let index = e.currentTarget.dataset.index; // 復位 this.restSlide(); // 刪除 this.list.splice(index,1); } } }
Vue具體輕量級框架、簡單易學、雙向數據綁定、組件化、數據和結構的分離、虛擬DOM、運行速度快等優勢,Vue中頁面使用的是局部刷新,不用每次跳轉頁面都要請求所有數據和dom,可以大大提升訪問速度和用戶體驗。
關于使用Vue怎么實現QQ左滑刪除組件功能就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。