怎么使用react实现一个tab组件

 3353

使用react实现一个tab组件的方法:1、通过“export default props => {...}”方式创建TAB button组件;2、通过“tab-group-layout.js”组件来传“tabIndex”,并设置默认选中的tab效果;3、用react继承“react.component”组件里的onMouseOver和OnMouseOut方法即可。


怎么使用react实现一个tab组件


怎么使用react实现一个tab组件?

react写Tab组件

使用react写TAB栏组件和对应hover事件(背景:在用gatsby开发页面时,遇到这样的组件效果,顺便记录一下)


1、效果

默认选中的tab选中效果 和 鼠标放上去的hover效果


当鼠标滑过右侧的tab时,也会有和第一个一样的选中效果!

2、tab-button.js 组件

  1. import React from "react"
  2. import { css } from "@emotion/core"
  3. import { Link } from "gatsby"
  4. import jdyStyles from "./container.module.css"
  5.   
  6. // TAB button 组件
  7. export default props => {
  8.   
  9. return (
  10.   
  11. <li css={css`font-size: 18px;margin-left:18px;margin-right: 18px;display:flex;flex-direction: column;align-items:center;justify-content:center`} >
  12.   
  13. <Link css={css`font-size: 18px;padding: 20px 12px;`} 
  14. className={ (props.selected?jdyStyles.header_hover_default:jdyStyles.header_hover)  }  to={props.to}>
  15. {props.children}
  16. </Link>
  17.   
  18. </li>
  19.   
  20. )
  21. }

3、tab-group-layout.js 组件

  1. import React from "react"
  2. import { css } from "@emotion/core"
  3. import { Link } from "gatsby"
  4. import ListLink from "../components/tab-button"
  5. import RegisterButton from "../components/round-button"
  6. export default ({ tabIndex }) => {
  7.   
  8. return (
  9.   
  10. <div>
  11.    
  12. {/* tab */}
  13. <ul style={{ listStyle: `none`, float: `right` }} css={css`display: flex;justify-content: space-between;align-items: center;`}>
  14. <ListLink to="/official-site/" selected={(tabIndex==='official-site')}>产品介绍</ListLink>
  15. <ListLink to="/about/" selected={(tabIndex==='about')}>成功案列</ListLink>
  16. <ListLink to="/contact/" selected={(tabIndex==='contact')}>服务支持</ListLink>
  17. <ListLink to="/sweet-pandas-eating-sweets/" selected={(tabIndex==='sweet-pandas-eating-sweets')}>资源中心</ListLink>
  18. </ul>
  19.   
  20. </div>
  21.   
  22. )
  23. }

使用这个组件传过来 tabIndex 设置默认选中的tab效果;也可以自己处理展示的逻辑


4、对应的css样式 container.module.css

  1. .header_hover{
  2.   color: #333;
  3. }
  4.   
  5. .header_hover_default{
  6.   color: #0084ff!important;
  7.   border-top: 3px solid #0084ff;
  8. }
  9.   
  10. .header_hover:hover{
  11.   color: #0084ff!important;
  12.   border-top: 3px solid #0084ff;
  13. }

5、当前组件的hover使用的是css样式控制,也可以用 react继承 react.component组件里的onMouseOver和OnMouseOut方法来实现


TAG标签:
本文网址:https://www.zztuku.com/detail-13244.html
站长图库 - 怎么使用react实现一个tab组件
申明:如有侵犯,请 联系我们 删除。

评论(0)条

您还没有登录,请 登录 后发表评论!

提示:请勿发布广告垃圾评论,否则封号处理!!

    编辑推荐