使用 CSS 为按钮悬停添加渐现效果


您可以尝试运行以下代码,使用 CSS 为按钮悬停添加渐现效果

示例

实际演示

<!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>

更新时间:2020 年 6 月 24 日

769 次浏览

开启你的 职业之旅

完成课程获得认证

开始学习
广告