下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
【移动应用开发技术】微信小程序怎样自定义对话框
这篇文章将为大家详细讲解有关微信小程序怎样自定义对话框,在下觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。微信小程序自定义对话框实例详解效果图: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);
inpu
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 发动机的参数辨识和系统辨识方法考核试卷
- 创业空间的行业协会与交流平台考核试卷
- 电力设备的冷却与散热控制考核试卷
- DB11T 594.3-2013 地下管线非开挖铺设工程施工及验收技术规程 第3部分:夯管施工
- DB11∕T 1824-2021 森林消防综合应急救援队伍装备使用和维护规范
- can i课件教学课件
- 中位数课件教学课件
- 2024年高考语文二轮复习:信息类阅读综合测试(解析版)
- 节日课文课件教学课件
- 淮阴工学院《建设监理》2023-2024学年第一学期期末试卷
- 2024年资格考试-CPSM认证考试近5年真题附答案
- 混料机的安全操作规程有哪些(8篇)
- 期中 (试题) -2024-2025学年译林版(三起)英语六年级上册
- 期中测试卷-2024-2025学年统编版语文一年级上册
- 国家基本医疗保险、工伤保险和生育保险药品目录(2023年)
- 人教版一年级数学上册《第一、二单元测试卷》(附答案)
- 人教版二年级上册数学计算题400道
- 供应室教学课件
- 第三单元 测量(单元测试)-2024-2025学年三年级上册数学人教版
- 1输变电工程施工质量验收统一表式(线路工程)-2024年版
- 华为年财务报表分析(共16张课件)
评论
0/150
提交评论