鱼C论坛

 找回密码
 立即注册
查看: 3045|回复: 0

[技术交流] RN动画制作之放大效果

[复制链接]
发表于 2017-8-10 08:37:03 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
import React, { Component } from 'react';
import {
  AppRegistry,
  View,
  Text,
  TouchableHighlight,
  Button,
  Animated,
  ImageBackground
} from 'react-native';

export default class myreact extends Component {
  constructor(props) {
    super(props); 
    this.state = {
      action:1,
      a:new Animated.Value(1)
      }
    
    };
  render() {   
    return (
      <ImageBackground source={require('./img/0.jpg')}
        style={{justifyContent: 'center',alignItems: 'center' }}
      >
      <Button 
      onPress={()=>{
        this.setState({action:this.state.a})
        Animated.timing(
          this.state.a,
          
          {
            toValue: 10,
          duration: 5000,

          }
          
    ).start()
      }
      }
      title="放大"
      color="#841584"
      />
      <Animated.View  
        style={{marginTop: 100,height: 20,width: 20,
        backgroundColor: 'red',
        transform:[{scale:this.state.action}]}}        
      >
      </Animated.View>
      
      </ImageBackground>
    );
  } 
} 
AppRegistry.registerComponent('myreact', () => myreact);
今天再学个新标签ImageBackground,可以放背景图。还是跟上次代码差不多就是改变transform里的scale属性,这次把初始状态设定为1,点击按钮后让他放大10倍,接下来效果图:
jdfw.gif

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-22 01:20

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表