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

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

如何自定義實現(xiàn)小程序動畫彈框/提示框

這篇文章將為大家詳細講解有關(guān)如何自定義實現(xiàn)小程序動畫彈框/提示框,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

網(wǎng)站設(shè)計制作過程拒絕使用模板建站;使用PHP+MYSQL原生開發(fā)可交付網(wǎng)站源代碼;符合網(wǎng)站優(yōu)化排名的后臺管理系統(tǒng);成都網(wǎng)站建設(shè)、做網(wǎng)站收費合理;免費進行網(wǎng)站備案等企業(yè)網(wǎng)站建設(shè)一條龍服務(wù).我們是一家持續(xù)穩(wěn)定運營了10余年的成都創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司。

如何自定義實現(xiàn)小程序動畫彈框/提示框

css3 實現(xiàn)動畫

如下是wxml代碼


  彈出底部彈出框
  彈出頂部提示框
  
    
    底部彈出內(nèi)容
     通知內(nèi)容
/* pages/customalertbox/customalertbox.wxss */
.click-btn {
  width: 120px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: 20px auto;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.top-box {
  width: 100%;
  height: 30px;
  background: #f56c6c;
  border-radius: 0 0 8px 8px;
  color: #fff;
  text-align: center;
  line-height: 30px;
  font-size: 28rpx;
  position: absolute;
  top: 0px;
  left: 0;
  animation-duration: 0.5s;
  animation-name: slidetop;
}

.mask {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

.pop {
  position: absolute;
  width: 100%;
  height: 180px;
  background: #42b983;
  border-radius: 8px 8px 0 0;
  position: absolute;
  bottom: 0px;
  animation-duration: 0.5s;
  animation-name: slidein;
}

@keyframes slidein {
  from {
    transform: translateY(70%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slidetop {
  from {
    transform: translateY(-30px);
  }
  to {
    transform: translateY(0px);
  }
}
// pages/customalertbox/customalertbox.js
Page({
  /**
   * 頁面的初始數(shù)據(jù)
   */
  data: {
    isBottom: false,
    isTop: false,
  },

  /**
   * 生命周期函數(shù)--監(jiān)聽頁面加載
   */
  onLoad: function(options) {},

  onBottomBox() {
    this.setData({
      isBottom: true,
    });
  },

  onHideBox() {
    this.setData({
      isBottom: false,
    });
  },

  onTopBox() {
    this.setData({
      isTop: true,
    });

    setTimeout(() => {
      this.setData({
        isTop: false,
      });
    }, 2000);
  },
});
.pop {
  /* ...  */
  animation-duration: 0.5s;
  animation-name: slidein; // 動畫的名稱
}

@keyframes slidein {
  // 定義動畫的名稱
  from {
    transform: translateY(70%); // 平移,垂直方向上
  }
  to {
    transform: translateY(0);
  }
}

.top-box {
  /* ... */
  animation-duration: 0.5s;
  animation-name: slidetop;
}

@keyframes slidetop {
  from {
    transform: translateY(-30px);
  }
  to {
    transform: translateY(0px);
  }
}

通過 css3 中的@keyframes以及變換transform,垂直方向上平移,實現(xiàn)動畫

示例效果如下所示

掘金不支持gif-實例效果可戳鏈接

以上是通過css3的動畫animation結(jié)合@keyframes動畫幀實現(xiàn)的,那么在小程序當中,也可以通過官方的動畫API實現(xiàn)的

小程序動畫 API-實現(xiàn)動畫

創(chuàng)建一個動畫實例 animation,調(diào)用實例的方法來描述動畫。最后通過動畫實例的 export 方法導(dǎo)出動畫數(shù)據(jù)傳遞給組件的 animation 屬性

示例效果如下所示

掘金不支持gif-實例效果可戳鏈接

如下是實例代碼


  彈出底部彈出框
  彈出頂部提示框
  
    
    底部彈出內(nèi)容
  
  通知內(nèi)容

主要是給想要添加動畫的元素添加了一個animation屬性,現(xiàn)在的動畫是通過js去控制,而非css

如下代碼所示

// pages/customalertbox/customalertbox.js
Page({
  /**
   * 頁面的初始數(shù)據(jù)
   */
  data: {
    isBottom: false,
    isTop: false,
    animationData: {}, // 定義動畫對象
  },

  /**
   * 生命周期函數(shù)--監(jiān)聽頁面加載
   */
  onLoad: function(options) {},

  onBottomBox() {
    // 創(chuàng)建動畫
    var animation = wx.createAnimation({
      duration: 2000,
      timingFunction: 'ease',
    });

    this.animation = animation;
    // 先在y軸偏移180,然后用step()完成一個動畫
    animation.translateY(180).step();
    this.setData({
      animationData: animation.export(),
      isBottom: true,
    });

    // 設(shè)置setTimeout來改變y軸偏移量,實現(xiàn)有感覺的滑動,回到初始位置
    setTimeout(() => {
      animation.translateY(0).step();
      this.setData({
        animationData: animation.export(),
      });
    }, 200);
  },

  // 點擊遮罩層隱藏彈框
  onHideBox() {
    var animation = wx.createAnimation({
      duration: 2000,
      timingFunction: 'ease',
    });
    this.animation = animation;
    // 先在y軸偏移180,然后用step()完成一個動畫
    animation.translateY(180).step();
    this.setData({
      animationData: animation.export(),
    });
    setTimeout(() => {
      animation.translateY(0).step();
      this.setData({
        animationData: animation.export(),
        isBottom: false,
      });
    }, 200);
  },

  onTopBox() {
    this.setData({
      isTop: true,
    });

    setTimeout(() => {
      this.setData({
        isTop: false,
      });
    }, 2000);
  },
});

以上就是通過微信小程序中動畫API實現(xiàn)的完成的動畫,代碼要比 css3 要多一些,可以實現(xiàn)更加復(fù)雜的動畫效果

注意

如果是底部彈出框,拖動里面時,若遮罩層底部會跟著滾動,具體解決辦法也可以在外層添加catchtouchmove="true"即可解決


  彈出底部彈出框
  
    
    底部彈出內(nèi)容
  
  通知內(nèi)容

關(guān)于“如何自定義實現(xiàn)小程序動畫彈框/提示框”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。


網(wǎng)頁標題:如何自定義實現(xiàn)小程序動畫彈框/提示框
文章位置:http://weahome.cn/article/jsedio.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部