日韩无码专区无码一级三级片|91人人爱网站中日韩无码电影|厨房大战丰满熟妇|AV高清无码在线免费观看|另类AV日韩少妇熟女|中文日本大黄一级黄色片|色情在线视频免费|亚洲成人特黄a片|黄片wwwav色图欧美|欧亚乱色一区二区三区

RELATEED CONSULTING
相關咨詢
選擇下列產品馬上在線溝通
服務時間:8:30-17:00
你可能遇到了下面的問題
關閉右側工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
創(chuàng)新互聯(lián)VUE2教程:Vue.js2.0過渡狀態(tài)

Vue 的過渡系統(tǒng)提供了非常多簡單的方法設置進入、離開和列表的動效。那么對于數(shù)據(jù)元素本身的動效呢,比如:

創(chuàng)新互聯(lián)是專業(yè)的商水網(wǎng)站建設公司,商水接單;提供成都網(wǎng)站建設、成都做網(wǎng)站,網(wǎng)頁設計,網(wǎng)站設計,建網(wǎng)站,PHP網(wǎng)站建設等專業(yè)做網(wǎng)站服務;采用PHP框架,可快速的進行商水網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!

  • 數(shù)字和運算
  • 顏色的顯示
  • SVG 節(jié)點的位置
  • 元素的大小和其他的屬性

所有的原始數(shù)字都被事先存儲起來,可以直接轉換到數(shù)字。做到這一步,我們就可以結合 Vue 的響應式和組件系統(tǒng),使用第三方庫來實現(xiàn)切換元素的過渡狀態(tài)。

狀態(tài)動畫 與 watcher

通過 watcher 我們能監(jiān)聽到任何數(shù)值屬性的數(shù)值更新??赡苈犉饋砗艹橄?,所以讓我們先來看看使用Tweenjs一個例子:


{{ animatedNumber }}

new Vue({
  el: '#animated-number-demo',
  data: {
    number: 0,
    animatedNumber: 0
  },
  watch: {
    number: function(newValue, oldValue) {
      var vm = this
      function animate (time) {
        requestAnimationFrame(animate)
        TWEEN.update(time)
      }
      new TWEEN.Tween({ tweeningNumber: oldValue })
        .easing(TWEEN.Easing.Quadratic.Out)
        .to({ tweeningNumber: newValue }, 500)
        .onUpdate(function () {
          vm.animatedNumber = this.tweeningNumber.toFixed(0)
        })
        .start()
      animate()
    }
  }
})

0

當你把數(shù)值更新時,就會觸發(fā)動畫。這個是一個不錯的演示,但是對于不能直接像數(shù)字一樣存儲的值,比如 CSS 中的 color 的值,通過下面的例子我們來通過 Color.js 實現(xiàn)一個例子:



Preview:

{{ tweenedCSSColor }}

var Color = net.brehaut.Color
new Vue({
  el: '#example-7',
  data: {
    colorQuery: '',
    color: {
      red: 0,
      green: 0,
      blue: 0,
      alpha: 1
    },
    tweenedColor: {}
  },
  created: function () {
    this.tweenedColor = Object.assign({}, this.color)
  },
  watch: {
    color: function () {
      function animate (time) {
        requestAnimationFrame(animate)
        TWEEN.update(time)
      }
      new TWEEN.Tween(this.tweenedColor)
        .to(this.color, 750)
        .start()
      animate()
    }
  },
  computed: {
    tweenedCSSColor: function () {
      return new Color({
        red: this.tweenedColor.red,
        green: this.tweenedColor.green,
        blue: this.tweenedColor.blue,
        alpha: this.tweenedColor.alpha
      }).toCSS()
    }
  },
  methods: {
    updateColor: function () {
      this.color = new Color(this.colorQuery).toRGB()
      this.colorQuery = ''
    }
  }
})
.example-7-color-preview {
  display: inline-block;
  width: 50px;
  height: 50px;
}

  Update

Preview:

#000000

動態(tài)狀態(tài)轉換

就像 Vue 的過渡組件一樣,數(shù)據(jù)背后狀態(tài)轉換會實時更新,這對于原型設計十分有用。當你修改一些變量,即使是一個簡單的 SVG 多邊形也可是實現(xiàn)很多難以想象的效果。

Sides: 468 Minimum Radius: 50% Update Interval: 500 milliseconds

查看該 fiddle,了解上面演示的完整代碼。

通過組件組織過渡

管理太多的狀態(tài)轉換的很快會接近到 Vue 實例或者組件的復雜性,幸好很多的動畫可以提取到專用的子組件。我們來將之前的示例改寫一下:


+ = {{ result }}

+ =

// 這種復雜的補間動畫邏輯可以被復用
// 任何整數(shù)都可以執(zhí)行動畫
// 組件化使我們的界面十分清晰
// 可以支持更多更復雜的動態(tài)過渡
// strategies.
Vue.component('animated-integer', {
  template: '{{ tweeningValue }}',
  props: {
    value: {
      type: Number,
      required: true
    }
  },
  data: function () {
    return {
      tweeningValue: 0
    }
  },
  watch: {
    value: function (newValue, oldValue) {
      this.tween(oldValue, newValue)
    }
  },
  mounted: function () {
    this.tween(0, this.value)
  },
  methods: {
    tween: function (startValue, endValue) {
      var vm = this
      function animate (time) {
        requestAnimationFrame(animate)
        TWEEN.update(time)
      }
      new TWEEN.Tween({ tweeningValue: startValue })
        .to({ tweeningValue: endValue }, 500)
        .onUpdate(function () {
          vm.tweeningValue = this.tweeningValue.toFixed(0)
        })
        .start()
      animate()
    }
  }
})
// All complexity has now been removed from the main Vue instance!
new Vue({
  el: '#example-8',
  data: {
    firstNumber: 20,
    secondNumber: 40
  },
  computed: {
    result: function () {
      return this.firstNumber + this.secondNumber
    }
  }
})

+ = 60

20 + 40 = 60

我們能在組件中結合使用這一節(jié)講到各種過渡策略和 Vue 內建的過渡系統(tǒng)??傊?,對于完成各種過渡動效幾乎沒有阻礙。


標題名稱:創(chuàng)新互聯(lián)VUE2教程:Vue.js2.0過渡狀態(tài)
文章轉載:http://m.5511xx.com/article/dppjddj.html