首页 > 代码库 > 简单边框动画
简单边框动画
在layui论坛上闲逛时发现了一个用css3实现的边框动画,故简单实现了下。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> .container{position: relative;width: 200px;height: 100px;line-height: 100px;text-align: center;border: 1px solid #ccc;} span{position: absolute;display: inline-block;content: none;width: 0;height: 0;font-size: 0;border: 0;transition: .5s;} /*该动画实则是通过四个span标签分别设置边框,然后再增加宽度或者高度来实现的*/ .top{top: 0;right: 0;border-top: 2px solid #000;} .right{bottom: 0;right: 0;border-right: 2px solid #000;} .bottom{bottom: 0;left: 0;border-bottom: 2px solid #000;} .left{top: 0;left: 0;border-left: 2px solid #000;} .container:hover .top,.container:hover .bottom{width: 200px;} .container:hover .left,.container:hover .right{height: 100px;} /*animate动画,因为上面运用了transition动画,故下面的动画注释了*/ /*.top,.bottom{animation: bt .6s infinite ease-in-out;} .left,.right{animation: bl .6s infinite ease-in-out}*/ @keyframes bt{ from{ width: 0; } 25%{ width: 50px; } 50%{ width: 100px; } 75{ width: 150px; } to{ width: 200px; } } @keyframes bl{ from{ height: 0; } 25%{ height: 25px; } 50%{ height: 50px; } 75%{ height: 75px; } to{ height: 100px; } } </style> </head> <body> <div class="container"> KOBE BRYANT <span class="top"></span> <span class="right"></span> <span class="bottom"></span> <span class="left"></span> </div> </body> </html>
也可以看看这篇文章
简单边框动画
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。