UNPKG

cjd-parkball

Version:

> 中后台业务组件库,中后台就像公园,进入需要买门票(登录),所以以 Parkball(公园球) 命名,公园内必定捕获!作为一个组件库,提供使用方法文档,方便开发者的调用

47 lines (38 loc) 847 B
--- category: 2 title: 自定义样式 title_en: Custom style --- zh-CN 可以自定义回到顶部按钮的样式,限制宽高:`40px * 40px`。 en-US You can customize the style of the button, just note the size limit: no more than `40px * 40px`. ````jsx import { BackTop } from 'parkball'; ReactDOM.render( <div> <BackTop> <div className="ant-back-top-inner">UP</div> </BackTop> Scroll down to see the bottom-right <strong style={{ color: '#1088e9' }}> blue </strong> button. </div>, mountNode ); ```` ````css #components-back-top-demo-custom .ant-back-top { bottom: 100px; } #components-back-top-demo-custom .ant-back-top-inner { height: 40px; width: 40px; line-height: 40px; border-radius: 4px; background-color: #1088e9; color: #fff; text-align: center; font-size: 20px; } ````