当前位置:   article > 正文

CSS悬浮动画

CSS悬浮动画

在这里插入图片描述

<button class="btn">悬浮动画</button>
  • 1
 .btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            padding: 10px 20px;
            width: 200px;
            height: 50px;
            background-color: transparent;
            border-radius: 5px;
            border: 2px solid powderblue;
            color: powderblue;
            font-weight: bold;
            transition: all 1s;
            overflow: hidden;
            &::before {
                content: "";
                position: absolute;
                height: 100%;
                width: 0;
                left: -30px;
                top: 0;
                background-color: powderblue;
                transform: skewX(45deg);
                transition: all 1s;
                z-index: -1;
            }
            &:hover {
                color: white;
                &::before {
                    width: 180%;
                }
            }
        }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/548480
推荐阅读
相关标签
  

闽ICP备14008679号