..._微信小程序api下拉框底部弹出是那个样式">
当前位置:   article > 正文

微信小程序 -- 自定义底部弹出框(带动画--滑入滑出)_微信小程序api下拉框底部弹出是那个样式

微信小程序api下拉框底部弹出是那个样式

实现这么一个功能,点击选项进行选择,效果是从底部弹出选项框(带滑出动画),选择了某项或者点击其他地方,隐藏(带滑出动画)。效果图如下:

可适用于任何场景,如普通选项(如图)或者类似商城小程序选择商品属性的弹出框。只需要把内容替换自己需要的即可。

1. wxml代码

  1. <view class="wrap">
  2. <view bindtap="showModal">
  3. <text>{{value}}</text>
  4. <icon class="arrow"></icon>
  5. </view>
  6. <!-- modal -->
  7. <view class="modal modal-bottom-dialog" hidden="{{hideFlag}}">
  8. <view class="modal-cancel" bindtap="hideModal"></view>
  9. <view class="bottom-dialog-body bottom-positon" animation="{{animationData}}">
  10. <!-- -->
  11. <view class='Mselect'>
  12. <view wx:for="{{optionList}}" wx:key="unique" data-value='{{item}}' bindtap='getOption'>
  13. {{item}}
  14. </view>
  15. </view>
  16. <view></view>
  17. <view class='Mcancel' bindtap='mCancel'>
  18. <text>取消</text>
  19. </view>
  20. </view>
  21. </view>
  22. </view>

 modal中,蓝色框框起来的,可按需替换。

 2. wxss代码

  1. .arrow{
  2. display:inline-block;
  3. border:6px solid transparent;
  4. border-top-color:#000;
  5. margin-left:8px;
  6. position:relative;
  7. top:6rpx;
  8. }
  9. /* ---------------------------- */
  10. /*模态框*/
  11. .modal{position:fixed; top:0; right:0; bottom:0; left:0; z-index:1000;}
  12. .modal-cancel{position:absolute; z-index:2000; top:0; right:0; bottom: 0; left:0; background:rgba(0,0,0,0.3);}
  13. .bottom-dialog-body{width:100%; position:absolute; z-index:3000; bottom:0; left:0;background:#dfdede;}
  14. /*动画前初始位置*/
  15. .bottom-positon{-webkit-transform:translateY(100%);transform:translateY(100%);}
  16. /* 底部弹出框 */
  17. .bottom-positon{
  18. text-align: center;
  19. }
  20. .Mselect{
  21. margin-bottom: 20rpx;
  22. }
  23. .Mselect view{
  24. padding: 26rpx 0;
  25. background: #fff;
  26. }
  27. .Mselect view:not(:last-of-type){
  28. border-bottom: 1px solid #dfdede;
  29. }
  30. .Mcancel{
  31. background: #fff;
  32. padding: 26rpx 0;
  33. }

 如果项目中,多个页面使用了同样效果弹出框,如下的代码可以放到公共样式文件app.wxss中。

 3. js代码

  1. Page({
  2. /**
  3. * 页面的初始数据
  4. */
  5. data: {
  6. optionList:['所有','选项1','选项2'],
  7. value:'所有',
  8. hideFlag: true,//true-隐藏 false-显示
  9. animationData: {},//
  10. },
  11. // 点击选项
  12. getOption:function(e){
  13. var that = this;
  14. that.setData({
  15. value:e.currentTarget.dataset.value,
  16. hideFlag: true
  17. })
  18. },
  19. //取消
  20. mCancel: function () {
  21. var that = this;
  22. that.hideModal();
  23. },
  24. // ----------------------------------------------------------------------modal
  25. // 显示遮罩层
  26. showModal: function () {
  27. var that = this;
  28. that.setData({
  29. hideFlag: false
  30. })
  31. // 创建动画实例
  32. var animation = wx.createAnimation({
  33. duration: 400,//动画的持续时间
  34. timingFunction: 'ease',//动画的效果 默认值是linear->匀速,ease->动画以低速开始,然后加快,在结束前变慢
  35. })
  36. this.animation = animation; //将animation变量赋值给当前动画
  37. var time1 = setTimeout(function () {
  38. that.slideIn();//调用动画--滑入
  39. clearTimeout(time1);
  40. time1 = null;
  41. }, 100)
  42. },
  43. // 隐藏遮罩层
  44. hideModal: function () {
  45. var that = this;
  46. var animation = wx.createAnimation({
  47. duration: 400,//动画的持续时间 默认400ms
  48. timingFunction: 'ease',//动画的效果 默认值是linear
  49. })
  50. this.animation = animation
  51. that.slideDown();//调用动画--滑出
  52. var time1 = setTimeout(function () {
  53. that.setData({
  54. hideFlag: true
  55. })
  56. clearTimeout(time1);
  57. time1 = null;
  58. }, 220)//先执行下滑动画,再隐藏模块
  59. },
  60. //动画 -- 滑入
  61. slideIn: function () {
  62. this.animation.translateY(0).step() // 在y轴偏移,然后用step()完成一个动画
  63. this.setData({
  64. //动画实例的export方法导出动画数据传递给组件的animation属性
  65. animationData: this.animation.export()
  66. })
  67. },
  68. //动画 -- 滑出
  69. slideDown: function () {
  70. this.animation.translateY(300).step()
  71. this.setData({
  72. animationData: this.animation.export(),
  73. })
  74. },
  75. })

如上,用“// ----------------------------------------------------------------------modal”隔开的以下的代码可不需要动。

 

如果一个页面中使用了两个同样效果的弹出框,只需要稍微修改一下就行了,这里就不贴出来。

 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/88267
推荐阅读
相关标签