自定义超链接动画---transition

来源:07素材网 04月10日 22:39

html超链接

HTML a {

position: relative; text-decoration: none; display: block; text-align: center; width: 200px; } /* 绘制上下线条 */ a::before, a::after{ content: ""; position: absolute; width: 100%; height: 2px; transition: width .2s ease-in-out; background: #92B901; } /* 固定线条方向 */ a::before{ top: 0; left: 0; } a::after{ bottom: 0; right: 0; } /* 过滤效果 */ a:hover::before, a:hover::after{ width: 0; } a span{ display: block; padding: 20px; } /* 绘制左右线条 */ a span::before, a span::after{ content: ""; position: absolute; width: 2px; height: 100%; transition: height .2s ease; background: #92B901; } a span::before{ bottom: 0; left: 0; } a span::after{ top: 0; right: 0; } a span:hover::before, a span:hover::after{ height: 0; }

原文出处:https://www.cnblogs.com/whnba/p/10666258.html
版权声明:本文来源地址若非本站均为转载,若侵害到您的权利,请及时联系我们,我们会在第一时间进行处理。

头条

在使用SQLite3时遇到的几个坑

在使用SQLite3时遇到的几个坑

《本打算在SQLite3数据库里执行一个查询语句,使用的是php语言,起初遇到的是权限问题: permission denied,因为SQLite3数据库文件和PHP执行者属于两个不同的用户,首先需要对这个文件执行mode 777的权限开放,然后,又遇到了下面这样的PHP错误