zoukankan      html  css  js  c++  java
  • css 眼前一亮的hover

    截图

     

    传送门

     
     
    <!DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <title>截图</title>
        <style>
    
        </style>
    </head>
    <style>
        button {
            border: 0;
            background: none;
            text-transform: uppercase;
            color: #4361ee;
            font-weight: bold;
            position: relative;
            outline: none;
            padding: 10px 20px;
            box-sizing: border-box;
        }
    
    
    
        button::before,
        button::after {
            box-sizing: inherit;
            position: absolute;
            content: '';
            border: 2px solid transparent;
            width: 0;
            height: 0;
        }
    
        /* button::after {
            bottom: 0;
            right: 0;
        } */
    
        button::before,
        button::after {
            top: 0;
            left: 0;
        }
    
        button:hover::before,
        button:hover::after {
            width: 100%;
            height: 100%;
        }
    
        button:hover::before {
            border-top-color: #4361ee;
            border-right-color: #4361ee;
            transition: width 0.3s, height 0.3s ease-out 0.3s;
        }
    
        button:hover::after {
            border-bottom-color: #4361ee;
            border-left-color: #4361ee;
            transition: height 0.3s, width 0.3s ease-out 0.3s;
        }
    </style>
    
    <body>
        <div id="draw-border">
            <button>Hover me</button>
        </div>
    </body>
    
    </html>

    截图

  • 相关阅读:
    首次成功实施 XSS 攻击,盗取目标网站大量 VIP 帐号
    框架模块设计经验总结
    OEA ORM 框架中的冗余属性设计
    UML 图使用心得
    Scrum 流程应用反思 我们的团队
    分享一个简单的 VS 插件及源码
    PDA使用感悟
    OEA 框架中集成的 RDLC 报表介绍
    私活后的 WPF 设计经验总结
    个人管理/时间管理 辅助工具套件分享
  • 原文地址:https://www.cnblogs.com/chengfengchi/p/13594737.html
Copyright © 2011-2022 走看看