Vue QQ 왼쪽 미끄럼 제거 모듈 기능
우리 먼저 효과 도 를 봅 시다.
효과 도
사고의 방향 을 실현 하 다.
구체 적 인 실현 방향 은 다음 과 같다.
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" alt="">
<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);
}
}
}
js 코드 는 이 정도 입 니 다.모든 함수 에 주석 설명 이 있 습 니 다.다 알 아 볼 수 있 을 거 라 고 믿 으 면 설명 이 많 지 않 습 니 다.결어
어 떻 습 니까?쌀 도 상상 속 의 것 처럼 어렵 지 않 습 니까?생각 을 정리 하면 됩 니 다.실현 하 는 것 도 그리 어렵 지 않 습 니 다.물론 제 가 여기 쓴 것 은 제 실현 사고 일 뿐 입 니 다.아마도 당신들 스스로 더 좋 은 실현 방식 이 있 을 것 입 니 다.왜 꺼 내 서 공유 하지 않 습 니까?
전체 코드 는 제 가gitlub에 맡 겼 습 니 다.다운로드 와 메 시 지 를 남 겨 주세요!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Fastapi websocket 및 vue 3(Composition API)1부: FastAPI virtualenv 만들기(선택 사항) FastAPI 및 필요한 모든 것을 다음과 같이 설치하십시오. 생성main.py 파일 및 실행 - 브라우저에서 이 링크 열기http://127.0.0.1:...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.