2.2.0 • Published 4 years ago

rax-text v2.2.0

Weekly downloads
2,102
License
BSD-3-Clause
Repository
github
Last release
4 years ago

rax-text

npm

支持

Web / Weex / 阿里小程序 / 微信小程序 / 字节跳动小程序

描述

Text 用于显示文本,在 web 中实际上是一个 span 标签而非 p 标签。

安装

$ npm install rax-text --save

属性

属性类型默认值必填描述支持
numberOfLinesnumber1false行数
selectablebooleanfalsefalse是否可选
spacestringfalse以何种方式显示连续空格
decodebooleanfalse是否解码。为 true 时表示对文本内容进行解码,可解析的 HTML 实体字符有:  < > & '

示例

import {createElement, render, Component} from 'rax';
import DU from 'driver-universal';
import View from 'rax-view';
import Text from 'rax-text';

const styles = {
  root: {
    width: 750,
    paddingTop: 20,
  },
  container: {
    padding: 20,
    borderStyle: 'solid',
    borderColor: '#dddddd',
    borderWidth: 1,
    marginLeft: 20,
    marginRight: 20,
    marginBottom: 10,
  },
  textBlock: {
    fontWeight: '500',
    color: 'blue',
  },
  logBox: {
    padding: 20,
    margin: 10,
    borderWidth: 1,
    borderColor: '#f0f0f0',
    backgroundColor: '#f9f9f9',
  },
};

class App extends Component {
  render() {
    return (
      <View style={styles.root}>
        <View style={{
          ...styles.container, ...{
            flexDirection: 'row',
            justifyContent: 'flex-start',
          }
        }}>
          <Text>text</Text>
          <Text style={{
            color: '#ff4200'
          }}>Mixing</Text>
        </View>

        <View style={styles.container}>
          <Text numberOfLines={1} style={{
            width: 300,
            textOverflow: 'ellipsis',
          }}>Single line of text exceeds truncated text</Text>

          <Text numberOfLines={2} style={{
            width: 300,
            textOverflow: 'ellipsis',
          }}>
          Multi-line text exceeds truncated text, exceeds truncated text, exceeds truncated text, exceeds truncated text</Text>
        </View>

        <View style={styles.container}>
          <Text style={{textDecoration: 'underline'}}>
          Text underline
          </Text>
          <Text style={{textDecorationLine: 'none'}}>
           no Underlined
          </Text>
          <Text style={{textDecoration: 'line-through'}}>
          Text strikethrough
          </Text>
        </View>

        <View style={styles.container}>
          <Text style={{lineHeight: '120rpx'}}>
          Line height 120rpx, multi-line text text folding effect Multi-line text text folding effect
          </Text>
        </View>

      </View>
    );
  }
}

render(<App/>, document.body, {driver: DU});
felix-rax-inputtitle-component@vfa25/h5-watermarkdesign-test-a@everything-registry/sub-chunk-2533tboc-texttab-header-containerxl-rax-modaltemplate-buytemplate-chattemplate-taobaotemplate-zhihujinboker-task-sdkhzw-componentsh5-demo-tpllego-image-text-testae-task-panelakwebace-test-local@halofe/rax-trade-refund@halofe/rax-detail@halofe/rax-item-evaluation@halofe/rax-materials@halofe/rax-materials-test@halofe/rax-member-address@halofe/rax-miniapp-lib@halofe/rax-trade-cart@halofe/rax-trade-cart-test@halofe/rax-trade-order@halofe/astore-mods-miniapp-rax-trade-refund@halofe/astore-mods-miniapp-member-address@halofe/astore-mods-miniapp-rax-carts@halofe/astore-mods-miniapp-rax-detail@halofe/astore-mods-miniapp-rax-item-evaluation@halofe/astore-mods-miniapp-rax-trade-orderyacheng-rax-hello1nuke-pi-loadernukenuke-package-testnuke-test-textrazzle-examples-with-raxrazzle-examples-raxrax-counterrax-datepickerrax-dinamicrax-example-test-abcdrax-componentsrax-countdownrax-gotoprax-lowcode-testrax-maprax-iconrax-keyframes-to-animationrax-linkrax-pickerrax-playerrax-player-albumrax-modalrax-my-f2rax-navigationrax-pull-to-refresh-indicatorrax-pwarax-g-tabsrax-menu-itemrax-menulistrax-recyclerview-renderrax-scrollviewrax-theme-buyrax-theme-chatrax-theme-demorax-theme-taobaorax-theme-zhihurax-timepickerrax-todolistrax-uirax-swipexrax-tab-panelrax-tabbarrax-tabheaderrax-tablerax-tbms-basemsgrax-tbms-chat-baserax-tbms-chat-itemrax-tbms-chat-parserrax-tbms-chat-pluginrax-tbms-custommsgrax-test-test-test-ui-packrax-app-templaterax-buttonrax-calendarrax-card-2colrax-card-2itemsrax-card-3itemsrax-card-albumrax-animatedrax-card-itemrax-card-scrollerpha-cliraininfall-rax-navigationraininfall.rax-button
2.2.0

4 years ago

2.1.3

4 years ago

2.1.2

4 years ago

2.1.1

4 years ago

2.1.0

4 years ago

2.1.0-0

4 years ago

2.0.7

5 years ago

2.0.6

5 years ago

2.0.5

5 years ago

2.0.5-0

5 years ago

2.0.4

5 years ago

2.0.3

5 years ago

2.0.1

5 years ago

2.0.0-0

5 years ago

2.0.0

5 years ago

1.4.0

5 years ago

1.3.1

6 years ago

1.3.0

6 years ago

1.2.0

6 years ago

1.1.7-0

6 years ago

1.1.6

6 years ago

1.1.5

6 years ago

1.1.4

6 years ago

1.1.3

6 years ago

1.1.3-0

6 years ago

1.1.2

6 years ago

1.1.2-1

6 years ago

1.1.2-0

6 years ago

1.1.1-beta.4

6 years ago

1.1.1

6 years ago

1.1.1-beta.3

6 years ago

1.1.1-beta.2

6 years ago

1.1.1-beta.1

6 years ago

1.1.0-2

6 years ago

1.1.0-1

6 years ago

1.1.0-0

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.1-beta.1

6 years ago

1.0.1-beta.0

6 years ago

1.0.0-beta.5

7 years ago

1.0.0

7 years ago

1.0.0-beta.4

7 years ago

1.0.0-beta.3

7 years ago

1.0.0-beta.1

7 years ago

1.0.0-beta.0

7 years ago

0.6.5

7 years ago

0.6.4

7 years ago

0.6.3

8 years ago

0.6.2

8 years ago

0.6.1

8 years ago

0.6.0

8 years ago

0.5.4

8 years ago

0.5.2

8 years ago

0.5.1

8 years ago

0.5.0

8 years ago

0.4.20

8 years ago

0.4.19

8 years ago

0.4.18

8 years ago

0.4.17

8 years ago

0.4.16

8 years ago

0.4.15

8 years ago

0.5.0-beta

8 years ago

0.4.14

8 years ago

0.4.13

8 years ago

0.4.12

8 years ago

0.4.11

8 years ago

0.4.10

8 years ago

0.4.9

8 years ago

0.4.8

8 years ago

0.4.7

8 years ago

0.4.6

8 years ago

0.4.5

8 years ago

0.4.4

8 years ago

0.4.3

8 years ago

0.4.2

8 years ago

0.4.1

8 years ago

0.4.0

8 years ago

0.3.8

8 years ago

0.3.7

8 years ago

0.3.6

8 years ago

0.3.5

8 years ago

0.3.4

8 years ago

0.3.3

8 years ago

0.3.2

9 years ago

0.3.1

9 years ago

0.3.0

9 years ago

0.2.11

9 years ago

0.2.10

9 years ago

0.2.9

9 years ago

0.2.8

9 years ago

0.2.7

9 years ago

0.2.6

9 years ago

0.2.5

9 years ago

0.2.4

9 years ago

0.2.3

9 years ago

0.2.2

9 years ago

0.2.1

9 years ago

0.2.0

9 years ago