위 챗 애플 릿 사용자 정의 팝 업 모드 상자 아래쪽 스크롤 금지 기능

그림:

wxml 코드:

<view class='fix_bottom'>
<view>  </view>
<view>    </view>
<view class='active' bindtap="showDialogBtn">    </view>
</view>

<!--   -->
<!--     -->
<view class="modal-mask" bindtap="hideModal" catchtouchmove="preventTouchMove" wx:if="{{showModal}}"></view>

<view class="modal-dialog" wx:if="{{showModal}}">
<view class="modal-title">    </view>
<view class="modal-content">
<view class="concent_list {{curindex==index? 'active':''}}" wx:for="{{concent_list}}" wx:for-index='index' data-index='{{index}}' bindtap='choose' data-name='{{item}}'>{{item}}</view>
</view>

<view class="modal-footer">
<view class="btn-cancel" bindtap="onCancel" data-status="cancel">  </view>
<view class="btn-confirm" bindtap="onConfirm" data-status="confirm">  </view>
</view>
</view>
wxss 코드

.fix_bottom{
width: 100%;
height: 120rpx;
background: #fff;
position: fixed;
bottom: 0;
border-top: 1px solid #ccc;
display: flex;
}

.fix_bottom view{
width: 33.333%;
border-left: 1px solid #ccc;
line-height: 120rpx;
text-align: center;
font-size: 40rpx;
font-weight: bold;
}

.active{
color:#ffffff;
background: -moz-linear-gradient(left, #ff7b68, #ff5462);
 /* Safari 4-5, Chrome 1-9 */
 /* -webkit-gradient(, [, ]?, [, ]? [, ]*) */
 background: -webkit-gradient(linear,left,from(#ff7b68),to(#ff5462));
 /* Safari 5.1+, Chrome 10+ */
 background: -webkit-linear-gradient(left, #ff7b68, #ff5462);
 /* Opera 11.10+ */
 background: -o-linear-gradient(left, #ff7b68, #ff5462);
}

/*     */

.modal-mask {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
background: #000;
opacity: 0.5;
overflow: hidden;
z-index: 9000;
color: #fff;
}

.modal-dialog {
width: 540rpx;
overflow: hidden;
position: fixed;
top: 40%;
left: 0;
z-index: 9999;
background: #f9f9f9;
margin: -180rpx 105rpx;
border-radius: 36rpx;
}

.modal-title {
height: 100rpx;
line-height: 100rpx;
font-size: 36rpx;
color: #fff;
text-align: center;
background: -moz-linear-gradient(left, #ff7b68, #ff5462);
 /* Safari 4-5, Chrome 1-9 */
 /* -webkit-gradient(, [, ]?, [, ]? [, ]*) */
 background: -webkit-gradient(linear,left,from(#ff7b68),to(#ff5462));
 /* Safari 5.1+, Chrome 10+ */
 background: -webkit-linear-gradient(left, #ff7b68, #ff5462);
 /* Opera 11.10+ */
 background: -o-linear-gradient(left, #ff7b68, #ff5462);
border-bottom: 1px solid #ccc;

}

.modal-content {

}

.concent_list{
width: 100%;
height: 100rpx;
border-bottom: 1px solid #ccc;
line-height: 100rpx;
text-align: center;
}

.modal-footer {
display: flex;
flex-direction: row;
height: 86rpx;
font-size: 34rpx;
line-height: 86rpx;
}

.btn-cancel {
width: 50%;
color: #666;
text-align: center;
border-right: 1px solid #dedede;
}

.btn-confirm {
width: 50%;
color: #ec5300;
text-align: center;
}
js 코드

var value='     '
Page({

/**
*        
*/
data: {
showModal: false,
concent_list:['     ','     ','     ','     '],
curindex:-1
},

/**
*       --      
*/
onLoad: function (options) {

},

/**
*       --      
*/
onShow: function () {
},

/**
*   
*/
showDialogBtn: function () {
this.setData({
showModal: true
})
},

/**
*        
*/
hideModal: function () {
this.setData({
showModal: false
});
},

/**
*            
*/
onCancel: function () {
this.hideModal();
},
/**
*            
*/
onConfirm: function () {
this.hideModal();

})
},

choose:function(e){
var index=e.currentTarget.dataset.index
value = e.currentTarget.dataset.name
console.log(value)
this.setData({
curindex:index
})
}

})
모드 상자 표시 시 아래쪽 내용 스크롤 금지 팝 업 시 아래쪽 패키지 부분 에 고정 포 지 셔 닝 을 추가 할 수 있 습 니 다.모드 상자 숨 길 때 고정 포 지 셔 닝 을 취소 할 수 있 습 니 다.
내용 패키지 의 요 소 는 100%폭 을 설정 해 야 합 니 다.

<view class='diceng_wrap' style='position: {{position}}'>
          
</view>
data 데이터 의 변화:
초기 화 할 때:
 position: 'auto',
모드 상자 표시 시간:
position: 'fixed',
모드 상자 숨 길 때:
position: 'auto',
모드 상자 표시 시
총결산
위 챗 애플 릿 사용자 정의 팝 업 모드 상자 의 아래쪽 스크롤 금지 기능 에 관 한 이 글 은 여기까지 소개 되 었 습 니 다.더 많은 위 챗 애플 릿 팝 업 모드 상자 내용 은 우리 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 많은 지원 바 랍 니 다!

좋은 웹페이지 즐겨찾기