Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/whyfail/react_scroll_bor


https://github.com/whyfail/react_scroll_bor

Last synced: 6 days ago
JSON representation

Awesome Lists containing this project

README

        

## 基于 React 的文字循环滚动效果组件

## 使用方式

```
import React from "react";
import ReactScrollBor from "./ReactScrollBor";

const mostSpan = new Array(100).fill("测试数据");

export default function App() {
return (

{mostSpan.map((item, index) => {
return (

{item}

);
})}

);
}

```