RiPro日主题Logo加闪光流光效果
我在网卡闲逛的时候,看到很多的网站LOGO都有个闪光的效果,怎么做的呢?经过混客网站长的小小研究,发现其实很简单,适合所有的网站,下面就把代码分享出啦。大家可以根据自己的网站修改class
/**LOGO加动态效果
混客网-共享素材资源平台 Www.HunKor.Com
*/
.logo-wrapper {
position: relative;
font-size:2em;
font-weight:700;
line-height:39px;
overflow:hidden;
margin:0;
}
.logo-wrapper::before{
content:"";
position: absolute;
width: 150px;
height: 10px;
background-color: rgba(255,255,255,.5);
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
-webkit-animation: searchLights 1s ease-in 1s infinite;
animation: searchLights 1s ease-in 1s infinite;
}
@-webkit-keyframes searchLights {
0% { left: -90px; top: 0; }
to { left: 90px; top: 0; }
}