博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
RN animated缩放动画
阅读量:4943 次
发布时间:2019-06-11

本文共 1234 字,大约阅读时间需要 4 分钟。

效果图:

代码:

import React, {Component} from 'react';import {    AppRegistry,    StyleSheet,    Text,    Animated,    TouchableOpacity,    View} from 'react-native';export default class AnimationSpringScene extends Component {    constructor(props) {        super(props);        this.springValue = new Animated.Value(0.3)    }    componentDidMount() {        this.spring()    }    spring() {        this.springValue.setValue(0.3)        Animated.spring(            this.springValue,            {                toValue: 1,                friction: 1            }        ).start()    }    render() {        return (            
this.spring()} style={styles.button}>
启动动画
); }}const styles = StyleSheet.create({ container: { flex: 1, marginTop: 20, justifyContent: 'center', alignItems: 'center', }, button: { marginTop: 20, backgroundColor: '#808080', height: 35, width: 140, borderRadius: 5, justifyContent: 'center', alignItems: 'center', },});

 

转载于:https://www.cnblogs.com/hualuoshuijia/p/10183581.html

你可能感兴趣的文章
---
查看>>
(第一组_GNS3)自反ACl
查看>>
hdu--1258--Sum It Up(Map水过)
查看>>
Spring @DeclareParents 的扩展应用实例
查看>>
VS2012更新Update1后帮助查看器无法打开
查看>>
Android 文件的读取和写入
查看>>
高校表白APP-冲刺第四天
查看>>
outlook 设置163邮箱
查看>>
mysql优化——show processlist命令详解
查看>>
Solr服务器搭建
查看>>
画世界怎么用光影_世界绘画经典教程:水彩光影魔法教程
查看>>
win+rsync+php,跨平台的fswatch+rsync同步备份
查看>>
vue2 cdn 加载html,vue项目中使用CDN加载
查看>>
数组转集合踩坑
查看>>
node.js的异步I/O、事件驱动、单线程
查看>>
vue cli3 子目录问题
查看>>
github.com访问慢解决
查看>>
微服务架构最强详解
查看>>
转:哈夫曼树详解
查看>>
.Net Core Identity外面使用Cookie中间件
查看>>