当前位置: 首页 > article >正文

详细介绍 React Native 的动画系统。主要包括 Animated 组件的各种用法:

1.基础动画值的创建:

import { Animated, Easing } from 'react-native';

// 创建动画值
const fadeAnim = new Animated.Value(0);    // 透明度动画值,初始值为0
const scaleAnim = new Animated.Value(1);   // 缩放动画值,初始值为1
const moveAnim = new Animated.ValueXY({    // 位移动画值,初始位置为 {x: 0, y: 0}
  x: 0,
  y: 0
});

2.基本动画类型:
 

function AnimationExample() {
  // 创建动画值
  const [fadeAnim] = useState(new Animated.Value(0));
  
  // 淡入动画
  const fadeIn = () => {
    Animated.timing(fadeAnim, {
      toValue: 1,           // 目标值
      duration: 1000,       // 动画持续时间(毫秒)
      easing: Easing.ease,  // 缓动函数
      useNativeDriver: true // 使用原生动画驱动
    }).start();            // 开始动画
  };
  
  // 淡出动画
  const fadeOut = () => {
    Animated.timing(fadeAnim, {
      toValue: 0,
      duration: 1000,
      useNativeDriver: true
    }).start();
  };
  
  return (
    <Animated.View
      style={
  
  {
        opacity: fadeAnim, // 绑定动画值到样式
      }}>
      <Text>淡入淡出的文本</Text>
    </Animated.View>
  );
}

3.复杂动画组合:

function ComplexAnimation() {
  // 创建多个动画值
  const moveX = new Animated.Value(0);
  const moveY = new Animated.Value(0);
  const scale = new Animated.Value(1);
  
  // 组合动画
  const startComplexAnimation = () => {
    // 并行动画:同时执行多个动画
    Animated.parallel([
      // X轴移动
      Animated.timing(moveX, {
        toValue: 100,
        duration: 1000,
        useNativeDriver: true
      }),
      // Y轴移动
      Animated.timing(moveY, {
        toValue: 100,
        duration: 1000,
        useNativeDriver: true
      }),
      // 缩放
      Animated.timing(scale, {
        toValue: 2,
        duration: 1000,
        useNativeDriver: true
      })
    ]).start();
  };
  
  // 序列动画:按顺序执行动画
  const startSequenceAnimation = () => {
    Animated.sequence([
      // 先移动
      Animated.timing(moveX, {
        toValue: 100,
        duration: 1000,
        useNativeDriver: true
      }),
      // 再缩放
      Animated.timing(scale, {
        toValue: 2,
        duration: 1000,
        useNativeDriver: true
      })
    ]).start();
  };
  
  return (
    <Animated.View
      style={
  
  {
        transform: [
          { translateX: moveX },
          { translateY: moveY },
          { scale: scale }
        ]
      }}>
      <Text>复杂动画示例</Text>
    </Animated.View>
  );
}

4.弹性动画:

function SpringAnimation() {
  const springAnim = new Animated.Value(0);
  
  const startSpring = () => {
    Animated.spring(springAnim, {
      toValue: 1,           // 目标值
      friction: 3,          // 摩擦力,越小弹性越大
      tension: 40,          // 张力,越大速度越快
      useNativeDriver: true
    }).start();
  };
  
  return (
    <Animated.View
      style={
  
  {
        transform: [{
          scale: springAnim.interpolate({
            inputRange: [0, 1],
            outputRange: [1, 2]
          })
        }]
      }}>
      <Text>弹性动画</Text>
    </Animated.View>
  );
}

5.插值动画:

function InterpolateAnimation() {
  const animValue = new Animated.Value(0);
  
  // 开始动画
  const startAnimation = () => {
    Animated.timing(animValue, {
      toValue: 1,
      duration: 1000,
      useNativeDriver: true
    }).start();
  };
  
  return (
    <Animated.View
      style={
  
  {
        opacity: animValue,  // 透明度变化
        transform: [{
          scale: animValue.interpolate({  // 缩放插值
            inputRange: [0, 0.5, 1],      // 输入范围
            outputRange: [1, 2, 1]        // 输出范围
          })
        }],
        backgroundColor: animValue.interpolate({  // 颜色插值
          inputRange: [0, 1],
          outputRange: ['red', 'blue']
        })
      }}>
      <Text>插值动画示例</Text>
    </Animated.View>
  );
}

这些示例涵盖了 React Native 动画的基础用法。每个动画都可以根据需要进行组合和调整,创建更复杂的动画效果。记住要合理使用 useNativeDriver 来提高动画性能。


http://www.kler.cn/a/522682.html

相关文章:

  • 什么是长短期记忆网络?
  • Java坦克大战
  • 软件架构的演变:从大型机和整体式应用到分布式计算
  • Vue 3 + TypeScript 实现父子组件协同工作案例解析
  • jemalloc 5.3.0的tsd模块的源码分析
  • (学习总结21)C++11 异常与智能指针
  • Java 大视界 -- Java 大数据与碳中和:能源数据管理与碳排放分析(66)
  • mysql索引 a
  • 本地Harbor仓库搭建流程
  • A7. Jenkins Pipeline自动化构建过程,可灵活配置多项目、多模块服务实战
  • 数据存储容量不足,查询性能下降的解决方法
  • 前端性能优化:HMR热更新和预获取加载
  • xxl-job面试题
  • 蓝桥杯:大小写转换(异或转换)
  • MoE的学习
  • hive:数据导入,数据导出,加载数据到Hive,复制表结构
  • DevEco Studio 4.1中如何创建OpenHarmony的Native C++ (NAPI)程序
  • 租房管理系统实现智能化租赁提升用户体验与运营效率
  • Businessman和businessmen
  • 使用PC版本剪映制作照片MV
  • 【PySide6快速入门】初识布局与QHBoxLayout、QVBoxLayout
  • 2021 年 6 月大学英语四级考试真题(第 2 套)——纯享题目版
  • 递归搜索回溯综合练习(十五题)
  • 力扣-链表-19 删除链表倒数第N个节点
  • 三星手机人脸识别解锁需要点击一下电源键,能够不用点击直接解锁吗
  • Vue 封装http 请求