使用react實現一個tab元件的方法:1、通過「export default props => {...}」方式建立TAB button元件;2、通過「tab-group-layout.js」元件來傳「tabIndex」,並設定預設選中的tab效果;3、用react繼承「react.component」元件裡的onMouseOver和OnMouseOut方法即可。
前端(vue)入門到精通課程:進入學習
Apipost = Postman + Swagger + Mock + Jmeter 超好用的API偵錯工具:
本教學操作環境:windows7系統、react18.0.0版、Dell G3電腦。
怎麼使用react實現一個tab元件?
react寫Tab元件
使用react寫TAB欄元件和對應hover事件(背景:在用gatsby開發頁面時,遇到這樣的元件效果,順便記錄一下)
1、效果
預設選中的tab選中效果 和 滑鼠放上去的hover效果
當滑鼠滑過右側的tab時,也會有和第一個一樣的選中效果!
2、tab-button.js 元件
import React from "react"
import { css } from "@emotion/core"
import { Link } from "gatsby"
import jdyStyles from "./container.module.css"
// TAB button 元件
export default props => {
return (
<li css={css`font-size: 18px;margin-left:18px;margin-right: 18px;display:flex;flex-direction: column;align-items:center;justify-content:center`} >
<Link css={css`font-size: 18px;padding: 20px 12px;`}
className={ (props.selected?jdyStyles.header_hover_default:jdyStyles.header_hover) } to={props.to}>
{props.children}
</Link>
</li>
)
}
登入後複製
3、tab-group-layout.js 元件
import React from "react"
import { css } from "@emotion/core"
import { Link } from "gatsby"
import ListLink from "../components/tab-button"
import RegisterButton from "../components/round-button"
export default ({ tabIndex }) => {
return (
<div>
{/* tab */}
<ul style={{ listStyle: `none`, float: `right` }} css={css`display: flex;justify-content: space-between;align-items: center;`}>
<ListLink to="/official-site/" selected={(tabIndex==='official-site')}>產品介紹</ListLink>
<ListLink to="/about/" selected={(tabIndex==='about')}>成功案列</ListLink>
<ListLink to="/contact/" selected={(tabIndex==='contact')}>服務支援</ListLink>
<ListLink to="/sweet-pandas-eating-sweets/" selected={(tabIndex==='sweet-pandas-eating-sweets')}>資源中心</ListLink>
</ul>
</div>
)
}
登入後複製
使用這個元件傳過來 tabIndex 設定預設選中的tab效果;也可以自己處理展示的邏輯
4、對應的css樣式 container.module.css
.header_hover{
color: #333;
}
.header_hover_default{
color: #0084ff!important;
border-top: 3px solid #0084ff;
}
.header_hover:hover{
color: #0084ff!important;
border-top: 3px solid #0084ff;
}
登入後複製
5、當前元件的hover使用的是css樣式控制,也可以用 react繼承 react.component元件裡的onMouseOver和OnMouseOut方法來實現
推薦學習:《》
以上就是怎麼使用react實現一個tab元件的詳細內容,更多請關注TW511.COM其它相關文章!