搜尋

首頁  >  問答  >  主體

如何製作像Windows 10設定中的懸停功能?

有人可以告訴我如何在 css 中進行這樣的懸停嗎?

這是 Windows 10 設定的範例。但我想在 css 中複製它。

P粉020556231P粉020556231445 天前536

全部回覆(1)我來回復

  • P粉515066518

    P粉5150665182023-09-13 00:20:32

    您可以使用多個漸層背景圖像來獲得懸停時的效果。

    這是一個例子。顯然,請嘗試各種設置,直到您獲得想要的外觀為止。

    <style>
      body {
        background: black;
      }
      
      div {
        width: 150px;
        height: 50px;
        color: red;
      }
      
      div:hover {
        background-image: linear-gradient(to right, white, transparent), linear-gradient(white, transparent), linear-gradient(to right, rgba(255, 255, 255, 0.3), 20%, transparent);
        background-size: 100% 1px, 1px 100%, 100% 100%;
        background-position: top left, top left, 1px 1px;
        background-repeat: no-repeat;
      }
    </style>
    
    <body>
      <div>Hover here</div>
    </body>

    回覆
    0
  • 取消回覆