微信小程序 自定义对话框实例详解


Posted in Javascript onJanuary 20, 2017

微信小程序 自定义对话框实例详解

效果图:

微信小程序 自定义对话框实例详解

index.wxml:

<button type="default" bindtap="clickbtn"> 
 点击 
</button> 
<view class="commodity_screen" bindtap="hideModal" wx:if="{{showModalStatus}}"></view> 
<view animation="{{animationData}}" class="commodity_attr_box" wx:if="{{showModalStatus}}"> 
<!--对话框标题--> 
<view class="dialog-title"> 
 请输入内容 
</view> 
<!--对话框输入部分--> 
<view class="input-view"> 
 <input type="text" bindblur="input_content" class="input-style"/> 
</view> 
<!--对话框按钮--> 
<view class="line-top">  
</view> 
<view class="btn-view"> 
 <view class="btn-cancel" bindtap="click_cancel">  
     取 消 
 </view> 
 <view class="btn-line"> 
 </view> 
 <view class="btn-cancel" bindtap="click_ok">  
     确 定 
 </view> 
</view> 
</view>

index.js:

var inputinfo = ""; 
var app = getApp() 
Page({ 
 data: { 
  animationData:"", 
  showModalStatus:false 
 }, 
  
 onLoad: function () { 
   
 }, 
 showModal: function () { 
  // 显示遮罩层 
  var animation = wx.createAnimation({ 
   duration: 200, 
   timingFunction: "linear", 
   delay: 0 
  }) 
  this.animation = animation 
  animation.translateY(300).step() 
  this.setData({ 
   animationData: animation.export(), 
   showModalStatus: true 
  }) 
  setTimeout(function () { 
   animation.translateY(0).step() 
   this.setData({ 
    animationData: animation.export() 
   }) 
  }.bind(this), 200) 
 }, 
 clickbtn:function(){ 
  if(this.data.showModalStatus){ 
   this.hideModal(); 
  }else{ 
   this.showModal(); 
  } 
 }, 
 hideModal: function () { 
  // 隐藏遮罩层 
  var animation = wx.createAnimation({ 
   duration: 200, 
   timingFunction: "linear", 
   delay: 0 
  }) 
  this.animation = animation 
  animation.translateY(300).step() 
  this.setData({ 
   animationData: animation.export(), 
  }) 
  setTimeout(function () { 
   animation.translateY(0).step() 
   this.setData({ 
    animationData: animation.export(), 
    showModalStatus: false 
   }) 
  }.bind(this), 200) 
 }, 
 click_cancel:function(){ 
  console.log("点击取消"); 
   this.hideModal(); 
 }, 
 click_ok:function(){ 
  console.log("点击了确定===,输入的信息为为==",inputinfo); 
   this.hideModal(); 
 }, 
 input_content:function(e){ 
  console.log(e); 
  inputinfo = e.detail.value;  
 } 
 
})

源码下载:http://xiazai.3water.com/201701/yuanma/modalTest(3water.com).rar

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

Javascript 相关文章推荐
jQuery的.live()和.die() 使用介绍
Sep 10 Javascript
简单的ajax连接库分享(不用jquery的ajax)
Jan 19 Javascript
jQuery中$(function() {});问题详解
Aug 10 Javascript
jquery实现的简单二级菜单效果代码
Sep 22 Javascript
Vue2 Vue-cli中使用Typescript的配置详解
Jul 24 Javascript
vue修改vue项目运行端口号的方法
Aug 04 Javascript
原生JS实现循环Nodelist Dom列表的4种方式示例
Feb 11 Javascript
vuejs项目打包之后的首屏加载优化及打包之后出现的问题
Apr 01 Javascript
解决vue项目nginx部署到非根目录下刷新空白的问题
Sep 27 Javascript
element-ui table组件如何使用render属性的实现
Nov 04 Javascript
JQuery发送ajax请求时中文乱码问题解决
Nov 14 jQuery
javascript实现点击产生随机图形
Jan 25 Javascript
Vue实例简单方法介绍
Jan 20 #Javascript
微信小程序 Toast自定义实例详解
Jan 20 #Javascript
JavaScript判断浏览器及其版本信息
Jan 20 #Javascript
JS中传递参数的几种不同方法比较
Jan 20 #Javascript
JS出现失效的情况总结
Jan 20 #Javascript
JSON 数据详解及实例代码分析
Jan 20 #Javascript
Angular ui.bootstrap.pagination分页
Jan 20 #Javascript
You might like
xml+php动态载入与分页
2006/10/09 PHP
基于php验证码函数的使用示例
2013/05/03 PHP
PHP中addslashes()和stripslashes()实现字符串转义和还原用法实例
2016/01/07 PHP
php获取当前url地址的方法小结
2017/01/10 PHP
关于jquery中全局函数each使用介绍
2013/12/10 Javascript
JavaScript中伪协议 javascript:使用探讨
2014/07/18 Javascript
一个JavaScript处理textarea中的字符成每一行实例
2014/09/22 Javascript
jquery实现多行文字图片滚动效果示例代码
2014/10/10 Javascript
基于JavaScript如何实现私有成员的语法特征及私有成员的实现方式
2015/10/28 Javascript
基于jQuery的网页影音播放器jPlayer的基本使用教程
2016/03/08 Javascript
JavaScript中this的四个绑定规则总结
2016/09/26 Javascript
JavaScript中数组Array.sort()排序方法详解
2017/03/01 Javascript
jQuery Plupload上传插件的使用
2017/04/19 jQuery
Javascript之高级数组API的使用实例
2019/03/08 Javascript
解决layer.prompt无效的问题
2019/09/24 Javascript
JS forEach跳出循环2种实现方法
2020/06/24 Javascript
基于vue的video播放器的实现示例
2021/02/19 Vue.js
浅谈Python中列表生成式和生成器的区别
2015/08/03 Python
基于python的Tkinter实现一个简易计算器
2015/12/31 Python
Linux下为不同版本python安装第三方库
2016/08/31 Python
Python3安装Pymongo详细步骤
2017/05/26 Python
对python 中class与变量的使用方法详解
2019/06/26 Python
Python requests模块基础使用方法实例及高级应用(自动登陆,抓取网页源码)实例详解
2020/02/14 Python
Python常驻任务实现接收外界参数代码解析
2020/07/21 Python
美国领先的精品家居照明和装饰产品在线零售商:LightsOnline.com
2018/01/23 全球购物
英国婴儿和儿童服装网站:Vertbaudet
2018/04/02 全球购物
2014端午节活动策划方案
2014/01/27 职场文书
信息服务专业毕业生求职信
2014/03/02 职场文书
2014大学生全国两会学习心得体会
2014/03/13 职场文书
见习期自我鉴定范文
2014/03/19 职场文书
政风行风评议心得体会
2014/10/21 职场文书
自愿离婚协议书范本2016
2016/03/18 职场文书
goland设置颜色和字体的操作
2021/05/05 Golang
python 中[0]*2与0*2的区别说明
2021/05/10 Python
mybatis3中@SelectProvider传递参数方式
2021/08/04 Java/Android
SQL Server使用T-SQL语句批处理
2022/05/20 SQL Server