• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

uni-app 动画旋转

武飞扬头像
清秋挽风
帮助1

学新通

<template>
  <view class="page">
    <view class="comtainer">
      <view class="item_box" :animation="animationData">
        <image
          v-show="positive"
          class="image"
          src="https://cdn.lianlianlvyou.com/agent/common/ac75225471234398ab470992d011bd64.jpg"
          mode=""
        />
        <image
          v-show="!positive"
          class="image"
          src="https://cdn.lianlianlvyou.com/agent/common/bb0b812d6eae4e318f099da9fa2e57e0.png"
          mode=""
        />
      </view>
    </view>
  </view>
</template>
<script>
export default {
  components: {},
  data() {
    return {
      timer: null,
      timeNum: 0,
      animation: null,
      positive: false,
      animationData: {},
    };
  },
  onShow() {
    this.initAnimation();
  },
  onHide() {
    clearTimeout(this.timer);
    this.timer = null;
  },
  methods: {
    initAnimation() {
      var animation = uni.createAnimation({
        duration: 300,
        timingFunction: "linear",
      });
      this.animation = animation;
      this.timer = setInterval(() => {
        const rotateX = animation.currentTransform.rotateX;
        if (rotateX) {
          this.timeNum -= 180;
          animation.rotateX(this.timeNum).step();
        } else {
          this.timeNum -= 180;
          animation.rotateX(this.timeNum).step();
        }
        this.animationData = animation.export();
        setTimeout(() => {
          this.positive = !this.positive;
        }, 150);
      }, 2000);
    },
  },
};
</script>

<style lang="scss" scoped>
.page {
  .comtainer {
    padding: 200px 0 0 50px;
    height: 200px;
    width: 100px;
    overflow: hidden;
    transform-style: preserve-3d;
	perspective: 2000px;

    .item_box {
      position: relative;
      display: flex;
      flex-direction: column;
      .image {
        width: 100px;
        height: 200px;
        transform: rotateX(180deg);
        &:last-child {
          transform: rotateX(360deg);
        }
      }
    }
  }
}
</style>


学新通

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /boutique/detail/tanhhaccke
系列文章
更多 icon
同类精品
更多 icon
继续加载