小程序彈出評論框,以及其遮罩效果實現


wxml:

<scroll-view scroll-y="{{isScroll}}">
...
<!-- 評論框 -->
<view class='model' wx:if="{{inputBoxShow}}">
<!-- invisible_model view 用於點擊隱藏model評論框 -->
<view class='invisible_model' catchtap='invisible'></view>
<view class='input-box'>
<textarea class="textarea" placeholder="請輸入你的看法" cursor-spacing="{{65}}" show-confirm-bar="{{false}}" adjust-position="{{true}}" auto-focus="{{true}}" />
<text class='send'>發送</text>
</view>
</view>
...
</scroll-view>

wxss:

.model {
position: fixed;
width: 100vw;
height: 100vh;
top: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.4);
z-index: 100;
}

.input-box {
position: absolute;
background-color: #f8f8f8;
padding: 30rpx;
padding-bottom: 130rpx;
bottom: 0;
left: 0;
right: 0;
z-index: 101;
}

.textarea {
background-color: #fff;
width: 100%;
padding: 5rpx;
height: 3.3em;
font-size: 15px;
position: static;
}

.send {
font-size: 14px;
margin-top: 5rpx;
color: #09bb07;
float: right;
position: static;
}

.invisible_model{
position: fixed;
width: 100vw;
height: 100vh;
top: 0;
bottom: 0;
}

js:

Page({
data: {
inputBoxShow: false,
isScroll: true,
},
showInputBox: function () {
this.setData({ inputBoxShow: true });
this.setData({ isScroll: false });
},
invisible: function(){
this.setData({ inputBoxShow: false });
this.setData({ isScroll: true });
}
})


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM