request-animation-frame.uvue 672 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<template>
  <view class="page">
    <page-head :title="title"></page-head>
    <button @click="startRequestAnimationFrame">requestAnimationFrame</button>
    <text class="frame-count">{{testFrameCount}}</text>
  </view>
</template>

<script>
  export default {
    data() {
      return {
        title: 'requestAnimationFrame',
        testFrameCount: 0
      }
    },
    methods: {
      startRequestAnimationFrame() {
19
        requestAnimationFrame((_ : number) => {
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
          this.testFrameCount++;
        })
      }
    }
  }
</script>

<style>
  .page {
    padding: 15px;
  }

  .frame-count {
    margin-top: 15px;
  }
</style>