真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

微信小程序如何實現(xiàn)動畫彈窗組件

這篇文章主要介紹了微信小程序如何實現(xiàn)動畫彈窗組件,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

創(chuàng)新互聯(lián)是一家集網(wǎng)站建設,托里企業(yè)網(wǎng)站建設,托里品牌網(wǎng)站建設,網(wǎng)站定制,托里網(wǎng)站建設報價,網(wǎng)絡營銷,網(wǎng)絡優(yōu)化,托里網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強企業(yè)競爭力。可充分滿足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時我們時刻保持專業(yè)、時尚、前沿,時刻以成就客戶成長自我,堅持不斷學習、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實用型網(wǎng)站。

基本效果如下:

微信小程序如何實現(xiàn)動畫彈窗組件

具體實現(xiàn)如下:

第一步:

新建一個 components 文件夾,用于存放我們以后開發(fā)中的所用組件,在 components 組件中新建一個popup文件夾來存放我們的彈窗組件,在popup下右擊新建 Component 并命名為 popup 后,會生成對應的 json wxml wxss js 4個文件,也就是一個自定義組件的組成部分,此時項目結構應該如下圖所示:

微信小程序如何實現(xiàn)動畫彈窗組件

第二步上代碼:

popup.wxml


 
 
 {{title}}
 {{content}}
 
  {{btn_no}}
  {{btn_ok}}
 
 
 

popup.wxss

.container{font-size:15px;color:#666;font-weight: bold;z-index:2;position:fixed;width:100vw;height:100vh;}
.wrap{position:fixed;top:0;left:0;bottom:0;right:0;}
.popup-container {position: fixed;left: 50%;top: 100%;width: 80%;max-width: 600rpx;border: 2rpx solid #ccc;border-radius: 10rpx;box-sizing: bordre-box;transform: translate(-50%, -50%);background: #fff;opacity: 0;}
.wx-popup-title {width: 100%;padding: 20rpx 0;text-align: center;font-size: 40rpx;border-bottom: 2rpx solid #89cfea;}
.wx-popup-con {margin: 60rpx 10rpx;text-align: center;}
.wx-popup-btn {display: flex;justify-content: space-around;margin-bottom: 40rpx;}
.wx-popup-btn text {display: flex;align-items: center;justify-content: center;width: 30%;height: 88rpx;border: 2rpx solid #ccc;border-radius: 88rpx;}
.btn-colse{width:35px;height:35px;position:absolute;bottom:-60px;left:50%;margin-left:-17.5px;}
.wrapAnimate{animation: wrapAnimate 1s linear forwards}
@keyframes wrapAnimate{
 0%{}
 100%{background:rgba(0,0,0,0.7);}
}
.wrapAnimateOut{animation: wrapAnimateOut 1s 0.2s linear forwards}
@keyframes wrapAnimateOut{
 0%{background:rgba(0,0,0,0.7);}
 100%{background:rgba(0,0,0,0);}
}
.popupAnimate{animation: popupAnimate 1.2s linear forwards}
@keyframes popupAnimate{
 0%{}
 60%{top:47%;opacity: 1;}
 80%{top:53%;opacity: 1;}
 100%{top:50%;opacity: 1;}
}
.popupAnimateOut{animation: popupAnimateOut 1.2s linear forwards}
@keyframes popupAnimateOut{
 0%{top:50%;opacity: 1;}
 20%{top:47%;opacity: 1;}
 100%{}
}

popup.js

Component({
 options: {
 multipleSlots: true // 在組件定義時的選項中啟用多slot支持
 },
 /*組件的屬性列表*/
 properties: {
 title: {
  type: String,
  value: '標題'
 },
 // 彈窗內容
 content: {
  type: String,
  value: '內容'
 },
 // 彈窗取消按鈕文字
 btn_no: {
  type: String,
  value: '取消'
 },
 // 彈窗確認按鈕文字
 btn_ok: {
  type: String,
  value: '確定'
 }
 },
 /* 組件的初始數(shù)據(jù) */
 data: {
 flag: true,
 bgOpacity:0,
 wrapAnimate:'wrapAnimate',
 popupAnimate:'popupAnimate'
 },
 /* 組件的方法列表 */
 methods: {
 //隱藏彈框
 hidePopup: function () {
  const that = this;
  this.setData({ bgOpacity: 0.7, wrapAnimate: "wrapAnimateOut", popupAnimate:"popupAnimateOut"})
  setTimeout(function(){
  that.setData({flag: false})
  },1200)
 },
 /* 內部私有方法建議以下劃線開頭 triggerEvent 用于觸發(fā)事件 */
 _error() {//觸發(fā)取消回調
  this.triggerEvent("error")
 },
 _success() {//觸發(fā)成功回調
  this.triggerEvent("success");
 }
 }
})

popup.json

{
 "component": true,
 "usingComponents": {}
}

第三步引用組件:

index.json

{
 "usingComponents": {
 "popup":"/components/popup/popup"
 }
}

index.wxml



index.js

Page({
 showPopup() {
 this.popup.showPopup();
 },
 //取消事件
 _error() {
 console.log('你點擊了取消');
 this.selectComponent("#popup").hidePopup();
 },
 //確認事件
 _success() {
 console.log('你點擊了確定');
 this.selectComponent("#popup").hidePopup();
 }
})

感謝你能夠認真閱讀完這篇文章,希望小編分享的“微信小程序如何實現(xiàn)動畫彈窗組件”這篇文章對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián),關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關知識等著你來學習!


分享文章:微信小程序如何實現(xiàn)動畫彈窗組件
分享鏈接:http://weahome.cn/article/jsiiee.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部