Typography排版

文本的基本格式。

何时使用#

  • 当需要展示标题、段落、列表内容时使用,如文章/博客/日志的文本样式。

  • 当需要一列基于文本的基础操作时,如拷贝/省略/可编辑。

代码演示

Introduction

In the process of internal desktop applications development, many different design specs and implementations would be involved, which might cause designers and developers difficulties and duplication and reduce the efficiency of development.
After massive project practice and summaries, Ant Design, a design language for background applications, is refined by Ant UED Team, which aims touniform the user interface specs for internal background projects, lower the unnecessary cost of design differences and implementation and liberate the resources of design and front-end development.

Guidelines and Resources

We supply a series of design principles, practical patterns and high quality design resources (Sketch and Axure), to help people create their product prototypes beautifully and efficiently.

介绍

蚂蚁的企业级产品是一个庞大且复杂的体系。这类产品不仅量级巨大且功能复杂,而且变动和并发频繁,常常需要设计与开发能够快速的做出响应。同时这类产品中有存在很多类似的页面以及组件,可以通过抽象得到一些稳定且高复用性的内容。
随着商业化的趋势,越来越多的企业级产品对更好的用户体验有了进一步的要求。带着这样的一个终极目标,我们(蚂蚁金服体验技术部)经过大量的项目实践和总结,逐步打磨出一个服务于企业级产品的设计体系 Ant Design。基于『确定』和『自然』的设计价值观,通过模块化的解决方案,降低冗余的生产成本,让设计者专注于更好的用户体验

设计资源

我们提供完善的设计原则、最佳实践和设计资源文件(SketchAxure),来帮助业务快速设计出高质量的产品原型。

展示文档样例。

expand codeexpand code
import { Typography, Divider } from 'antd';

const { Title, Paragraph, Text } = Typography;

ReactDOM.render(
  <Typography>
    <Title>Introduction</Title>
    <Paragraph>
      In the process of internal desktop applications development, many different design specs and
      implementations would be involved, which might cause designers and developers difficulties and
      duplication and reduce the efficiency of development.
    </Paragraph>
    <Paragraph>
      After massive project practice and summaries, Ant Design, a design language for background
      applications, is refined by Ant UED Team, which aims to 
      <Text strong>
        uniform the user interface specs for internal background projects, lower the unnecessary
        cost of design differences and implementation and liberate the resources of design and
        front-end development
      </Text>
      .
    </Paragraph>
    <Title level={2}>Guidelines and Resources</Title>
    <Paragraph>
      We supply a series of design principles, practical patterns and high quality design resources
      (<Text code>Sketch</Text> and <Text code>Axure</Text>), to help people create their product
      prototypes beautifully and efficiently.
    </Paragraph>

    <Paragraph>
      <ul>
        <li>
          <a href="/docs/spec/proximity">Principles</a>
        </li>
        <li>
          <a href="/docs/pattern/navigation">Patterns</a>
        </li>
        <li>
          <a href="/docs/resource/download">Resource Download</a>
        </li>
      </ul>
    </Paragraph>

    <Divider />

    <Title>介绍</Title>
    <Paragraph>
      蚂蚁的企业级产品是一个庞大且复杂的体系。这类产品不仅量级巨大且功能复杂,而且变动和并发频繁,常常需要设计与开发能够快速的做出响应。同时这类产品中有存在很多类似的页面以及组件,可以通过抽象得到一些稳定且高复用性的内容。
    </Paragraph>
    <Paragraph>
      随着商业化的趋势,越来越多的企业级产品对更好的用户体验有了进一步的要求。带着这样的一个终极目标,我们(蚂蚁金服体验技术部)经过大量的项目实践和总结,逐步打磨出一个服务于企业级产品的设计体系
      Ant Design。基于<Text mark>『确定』和『自然』</Text>
      的设计价值观,通过模块化的解决方案,降低冗余的生产成本,让设计者专注于
      <Text strong>更好的用户体验</Text></Paragraph>
    <Title level={2}>设计资源</Title>
    <Paragraph>
      我们提供完善的设计原则、最佳实践和设计资源文件(<Text code>Sketch</Text><Text code>Axure</Text>),来帮助业务快速设计出高质量的产品原型。
    </Paragraph>

    <Paragraph>
      <ul>
        <li>
          <a href="/docs/spec/proximity">设计原则</a>
        </li>
        <li>
          <a href="/docs/pattern/navigation">设计模式</a>
        </li>
        <li>
          <a href="/docs/resource/download">设计资源</a>
        </li>
      </ul>
    </Paragraph>
  </Typography>,
  mountNode,
);

h1. Ant Design

h2. Ant Design

h3. Ant Design

h4. Ant Design

展示不同级别的标题。

expand codeexpand code
import { Typography } from 'antd';

const { Title } = Typography;

ReactDOM.render(
  <div>
    <Title>h1. Ant Design</Title>
    <Title level={2}>h2. Ant Design</Title>
    <Title level={3}>h3. Ant Design</Title>
    <Title level={4}>h4. Ant Design</Title>
  </div>,
  mountNode,
);
Ant Design
Ant Design
Ant Design
Ant Design
Ant Design
Ant Design
Ant Design
Ant Design
Ant Design
Ant Design

内置不同样式的文本。

expand codeexpand code
import { Typography } from 'antd';

const { Text } = Typography;

ReactDOM.render(
  <div>
    <Text>Ant Design</Text>
    <br />
    <Text type="secondary">Ant Design</Text>
    <br />
    <Text type="warning">Ant Design</Text>
    <br />
    <Text type="danger">Ant Design</Text>
    <br />
    <Text disabled>Ant Design</Text>
    <br />
    <Text mark>Ant Design</Text>
    <br />
    <Text code>Ant Design</Text>
    <br />
    <Text underline>Ant Design</Text>
    <br />
    <Text delete>Ant Design</Text>
    <br />
    <Text strong>Ant Design</Text>
  </div>,
  mountNode,
);
This is an editable text.
This is a copyable text.
Replace copy text.

提供可编辑和可复制等额外的交互能力。

expand codeexpand code
import { Typography } from 'antd';

const { Paragraph } = Typography;

class Demo extends React.Component {
  state = {
    str: 'This is an editable text.',
  };

  onChange = str => {
    console.log('Content change:', str);
    this.setState({ str });
  };

  render() {
    return (
      <div>
        <Paragraph editable={{ onChange: this.onChange }}>{this.state.str}</Paragraph>
        <Paragraph copyable>This is a copyable text.</Paragraph>
        <Paragraph copyable={{ text: 'Hello, Ant Design!' }}>Replace copy text.</Paragraph>
      </div>
    );
  }
}

ReactDOM.render(<Demo />, mountNode);
Ant Design, a design language for background applications, is refined by Ant UED Team. Ant Design, a design language for background applications, is refined by Ant UED Team. Ant Design, a design language for background applications, is refined by Ant UED Team. Ant Design, a design language for background applications, is refined by Ant UED Team. Ant Design, a design language for background applications, is refined by Ant UED Team. Ant Design, a design language for background applications, is refined by Ant UED Team.
Ant Design, a design language for background applications, is refined by Ant UED Team. Ant Design, a design language for background applications, is refined by Ant UED Team. Ant Design, a design language for background applications, is refined by Ant UED Team. Ant Design, a design language for background applications, is refined by Ant UED Team. Ant Design, a design language for background applications, is refined by Ant UED Team. Ant Design, a design language for background applications, is refined by Ant UED Team.

多行文本省略。

expand codeexpand code
import { Typography } from 'antd';

const { Paragraph } = Typography;

ReactDOM.render(
  <div>
    <Paragraph ellipsis>
      Ant Design, a design language for background applications, is refined by Ant UED Team. Ant
      Design, a design language for background applications, is refined by Ant UED Team. Ant Design,
      a design language for background applications, is refined by Ant UED Team. Ant Design, a
      design language for background applications, is refined by Ant UED Team. Ant Design, a design
      language for background applications, is refined by Ant UED Team. Ant Design, a design
      language for background applications, is refined by Ant UED Team.
    </Paragraph>

    <Paragraph ellipsis={{ rows: 3, expandable: true }}>
      Ant Design, a design language for background applications, is refined by Ant UED Team. Ant
      Design, a design language for background applications, is refined by Ant UED Team. Ant Design,
      a design language for background applications, is refined by Ant UED Team. Ant Design, a
      design language for background applications, is refined by Ant UED Team. Ant Design, a design
      language for background applications, is refined by Ant UED Team. Ant Design, a design
      language for background applications, is refined by Ant UED Team.
    </Paragraph>
  </div>,
  mountNode,
);

API#

Typography.Text#

参数说明类型默认值版本
copyable是否可拷贝,为对象时可设置复制文本以回调函数boolean | { text: string, onCopy: Function }false3.14.0
delete添加删除线样式booleanfalse3.14.0
disabled禁用文本booleanfalse3.14.0
editable是否可编辑,为对象时可对编辑进行控制boolean | { editing: boolean, onStart: Function, onChange: Function(string) }false3.14.0
ellipsis设置自动溢出省略booleanfalse3.14.0
mark添加标记样式booleanfalse3.14.0
code添加代码样式booleanfalse3.14.0
underline添加下划线样式booleanfalse3.14.0
strong是否加粗booleanfalse3.14.0
type文本类型secondary, warning, danger-3.14.0

Typography.Title#

参数说明类型默认值版本
copyable是否可拷贝,为对象时可设置复制文本以回调函数boolean | { text: string, onCopy: Function }false3.14.0
delete添加删除线样式booleanfalse3.14.0
disabled禁用文本booleanfalse3.14.0
editable是否可编辑,为对象时可对编辑进行控制boolean | { editing: boolean, onStart: Function, onChange: Function(string) }false3.14.0
ellipsis自动溢出省略,为对象时可设置省略行数与是否可展开等boolean | { rows: number, expandable: boolean, onExpand: Function }false3.14.0
level重要程度,相当于 h1h2h3h4number: 1, 2, 3, 413.14.0
mark添加标记样式booleanfalse3.14.0
underline添加下划线样式booleanfalse3.14.0
onChange当用户提交编辑内容时触发Function(string)-3.14.0
type文本类型secondary, warning, danger-3.14.0

Typography.Paragraph#

参数说明类型默认值版本
copyable是否可拷贝,为对象时可设置复制文本以回调函数boolean | { text: string, onCopy: Function }false3.14.1
delete添加删除线样式booleanfalse3.14.0
disabled禁用文本booleanfalse3.14.0
editable是否可编辑,为对象时可对编辑进行控制boolean | { editing: boolean, onStart: Function, onChange: Function(string) }false3.14.0
ellipsis自动溢出省略,为对象时可设置省略行数与是否可展开等boolean | { rows: number, expandable: boolean, onExpand: Function }false3.14.0
mark添加标记样式booleanfalse3.14.0
underline添加下划线样式booleanfalse3.14.0
onChange当用户提交编辑内容时触发Function(string)-3.14.0
strong是否加粗booleanfalse3.14.0
type文本类型secondary, warning, danger-3.14.0
Icon图标Grid栅格