站长圈

ripro主题Logo加闪光效果

分类:计算机/互联网 时间:2021-08-10 14:34 浏览:1241
概述
最近看到很多的网站LOGO都有个闪光的效果,怎么做的呢?小编也研究了下,适合所有网站,下面把代码分享给大家/*ZZHUTI网站LOGO 流光*/ .logo-wrapper {     position: relative;     font-size:2em;     font-
内容

最近看到很多的网站LOGO都有个闪光的效果,怎么做的呢?小编也研究了下,适合所有网站,下面把代码分享给大家

1.gif


/*ZZHUTI网站LOGO 流光*/
.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; }
}


评论
  • 上一篇
  • 已是该分组下第一篇
资讯正文页右侧广告
底部广告
网站首页  |   关于我们  |   广告合作  |   联系我们  |   隐私条款  |   免责声明  |   网站地图
CopyRight 2014-2024 站长圈 | ICP证:粤ICP备16065033号-15
联系客服
技术咨询 售前小郑 客服明明 联系客服
0769-33314958
手机版

扫一扫进手机版
返回顶部