You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
645 B
35 lines
645 B
5 years ago
|
---
|
||
|
order: 6.1
|
||
|
title:
|
||
|
zh-CN: 轮播的公告
|
||
|
en-US: Loop Banner
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
配合 [react-text-loop](https://npmjs.com/package/react-text-loop) 实现消息轮播通知栏。
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
Show a loop banner by using with [react-text-loop](https://npmjs.com/package/react-text-loop).
|
||
|
|
||
|
```tsx
|
||
|
import { Alert } from 'antd';
|
||
|
import TextLoop from 'react-text-loop';
|
||
|
|
||
|
ReactDOM.render(
|
||
|
<Alert
|
||
|
banner
|
||
|
message={
|
||
|
<TextLoop mask>
|
||
|
<div>Notice message one</div>
|
||
|
<div>Notice message two</div>
|
||
|
<div>Notice message three</div>
|
||
|
<div>Notice message four</div>
|
||
|
</TextLoop>
|
||
|
}
|
||
|
/>,
|
||
|
mountNode,
|
||
|
);
|
||
|
```
|