首页  >  文章  >  web前端  >  使用 CSS 在按钮悬停时淡入

使用 CSS 在按钮悬停时淡入

王林
王林转载
2023-09-06 21:45:13951浏览

使用 CSS 在按钮悬停时淡入

您可以尝试运行以下代码,以使用 CSS 在按钮悬停时淡入

示例

Live演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         .btn {
            background-color: orange;
            color: white;
            padding: 10px;
            text-align: center;
            font-size: 16px;
            margin: 5px;
            opacity: 0.5;
            transition: 0.5s;
            display: inline-block;
            text-decoration: none;
            cursor: pointer;
         }
         .btn:hover {
            opacity: 2
         }
      </style>
   </head>
   <body>
      <button class = "btn">Result</button>
   </body>
</html>

以上是使用 CSS 在按钮悬停时淡入的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:tutorialspoint.com。如有侵权,请联系admin@php.cn删除