为了账号安全,请及时绑定邮箱和手机立即绑定

小程序弹出评论框,以及其遮罩效果实现

标签:
WebApp

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 });
  }
})



作者:linwene
链接:https://www.jianshu.com/p/30f57018d044


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消