Socket
Socket
Sign inDemoInstall

@remobile/react-native-marquee

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @remobile/react-native-marquee

A react-native card list write in js


Version published
Weekly downloads
3
increased by50%
Maintainers
1
Install size
10.5 kB
Created
Weekly downloads
 

Readme

Source

React Native Marquee (remobile)

A react-native marquee list write in js

Installation

npm install @remobile/react-native-marquee --save

Usage

Example

'use strict';

var React = require('react');
var ReactNative = require('react-native');
var {
    StyleSheet,
    View,
    Text,
} = ReactNative;

var Button = require('@remobile/react-native-simple-button');
var Marquee = require('@remobile/react-native-marquee');

module.exports = React.createClass({
    getInitialState() {
        return {
            text:  '暗示健康等会拉时间段ksajdfkasdjkfasjdkfasldfjasdlf暗示健康等会拉',
            fontSize:  18,
            width:  200,
            lineHeight:  50,
            color:  'red',
        };
    },
    changeContent() {
        if (!this.contentFlag) {
            this.contentFlag = true;
            this.setState({
                text:  '1231238123981273981273981273912873912873129837129837',
            });
        } else {
            this.contentFlag = false;
            this.setState({
                text:  '暗示健康等会拉时间段ksajdfkasdjkfasjdkfasldfjasdlf暗示健康等会拉',
            });
        }
    },
    changeStyle() {
        if (!this.styleFlag) {
            this.styleFlag = true;
            this.setState({
                fontSize:  50,
                width:  100,
                lineHeight:  150,
                color:  'blue',
            });
        } else {
            this.styleFlag = false;
            this.setState({
                fontSize:  18,
                width:  200,
                lineHeight:  50,
                color:  'red',
            });
        }
    },
    render() {
        const {text, fontSize, color, width, lineHeight} = this.state;
        return (
            <View style={styles.container}>
                <Marquee style={[styles.label, {fontSize, color, width, lineHeight}]}>
                    {text}
                </Marquee>
                <Button onPress={this.changeContent}>改变内容</Button>
                <Button onPress={this.changeStyle}>改变样式</Button>
            </View>
        );
    }
});


var styles = StyleSheet.create({
    container: {
        flex: 1,
        paddingTop: 100,
    },
    label: {
        color: 'red',
        fontSize: 18,
        fontWeight: '800',
        letterSpacing: 10,
        fontStyle: 'italic',
        lineHeight: 50,
        backgroundColor: 'green',
        paddingHorizontal: 20,
        width: 200,
        left: 100,
        overflow: 'hidden',
    },
});

Screencasts

demo

Props
  • children: React.PropTypes.string.isRequired show text
  • speed: React.PropTypes.number letter move speed, unit is ms, default is 10
  • spaceRatio: React.PropTypes.number the space ratio of container width
  • style: PropTypes.style view style and text style

Keywords

FAQs

Last updated on 22 Jan 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc