第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

使用 React-Icon 庫(kù)將鼠標(biāo)懸停在圖標(biāo)上時(shí)顯示文本

使用 React-Icon 庫(kù)將鼠標(biāo)懸停在圖標(biāo)上時(shí)顯示文本

慕姐4208626 2023-07-14 09:37:28
所以我試圖在您將鼠標(biāo)懸停在鼠標(biāo)上時(shí)顯示文本。我正在使用 React-Icons 庫(kù)并使用 Styled-Components 進(jìn)行樣式設(shè)置我的導(dǎo)航欄上有 4 個(gè)圖標(biāo) - 主頁(yè) - 關(guān)于 - 技能 - 工作每個(gè)按鈕都是其自己的組件,以便懸停正常工作,因此當(dāng)我將鼠標(biāo)懸停在 1 個(gè)圖標(biāo)上時(shí),它不會(huì)顯示所有圖標(biāo)的文本import React, { useState } from 'react';import { SkillsButton } from './SkillsBtnElements'const SkillsBtn = () => {  const [hover, setHover] = useState(false);  const onHover = () => {    setHover(!hover)  }  return (    <div onMouseEnter={onHover} onMouseLeave={onHover} role="button" tabIndex='-3' >      { hover ? "SKILLS" : <SkillsButton /> }    </div>  )}export default SkillsBtn;對(duì)于造型我有import styled from 'styled-components';import { GiGearHammer } from 'react-icons/gi';export const SkillsButton = styled(GiGearHammer)`  font-size: 1.75rem;  color: white;  flex-grow: 1;  cursor: pointer;  @media screen and (max-width: 960px) {    transition: all 0.2s ease-in-out;    font-size: 1rem;    color: white;  }  &:hover {    transition: all 0.2s ease-in-out;  }`;我確實(shí)實(shí)現(xiàn)了懸停效果,但是當(dāng)我不斷懸停圖標(biāo)時(shí),邏輯似乎變得混亂,然后它只顯示文本,當(dāng)我將鼠標(biāo)懸停在文本上時(shí),圖標(biāo)出現(xiàn)......這不是所需的效果示例: https: //gph.is/g/4ARQoRV
查看完整描述

2 回答

?
慕尼黑的夜晚無(wú)繁華

TA貢獻(xiàn)1864條經(jīng)驗(yàn) 獲得超6個(gè)贊

效果異常是由于關(guān)閉陳舊問題造成的。{hover ? "SKILLS" : <SkillsButton />}正在使用陳舊的懸停值進(jìn)行渲染。如果您希望僅當(dāng)鼠標(biāo)位于 div 上時(shí)才顯示文本,請(qǐng)嘗試為 onMouseEnter 和 onMouseLeave 事件創(chuàng)建兩個(gè)單獨(dú)的函數(shù)。像這樣:


import React, { useState } from "react";

import { SkillsButton } from './SkillsBtnElements'


const SkillsBtn = () => {

  const [hover, setHover] = useState(false);

  const onHover = () => {

    setHover(true);

  };


  const onLeave = () => {

    setHover(false);

  };

  return (

    <div

      onMouseEnter={onHover}

      onMouseLeave={onLeave}

      role="button"

      tabIndex="-3"

    >

      {hover ? "SKILLS" : <SkillsButton />}

    </div>

  );

};


export default SkillsBtn;


查看完整回答
反對(duì) 回復(fù) 2023-07-14
?
楊__羊羊

TA貢獻(xiàn)1943條經(jīng)驗(yàn) 獲得超7個(gè)贊

一個(gè)更簡(jiǎn)單的選項(xiàng),使用MUI 工具提示組件

<Tooltip title="Delete">

? <IconButton>

? ? <DeleteIcon />

? </IconButton>

</Tooltip>

http://img1.sycdn.imooc.com/64b0a7060001f2cb02490213.jpg

查看完整回答
反對(duì) 回復(fù) 2023-07-14
  • 2 回答
  • 0 關(guān)注
  • 330 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)