React相关插件
1、瀑布流插件
npm install autoresponsive-react --save-dev
例子:
import React, {
Component } from 'react';
import AutoResponsive from "autoresponsive-react"
class App extends Component {
state = {
data: [
1, 2, 3, 4, 5, 6, 7, 8, 9
]
}
getResponsiveProps() {
return {
itemMargin: 10,
containerWidth: this.state.containerWidth || document.body.clientWidth,
itemClassName: 'item',
gridWidth: 100,
transitionDuration: '.5'
}
}
render() {
return (
<div>
<AutoResponsive ref