模仿ripro主题很多站的logo扫光效果
作者:admin 分类:站长经验总结 时间:2021-12-08 浏览:
<style>
.logo {
position: relative;
font-size:1em;
font-weight:200;
line-height:19px;
overflow:hidden;
margin:0;

}
.logo::before{
content:"";
position: absolute;
width: 100px;
height: 20px;
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; }

}
</style>
复制以上css放到页面上,或者css文件里面,css类要根据你的具体名称更换下,即可达到和本站logo一样的扫光效果
文章链接:https://www.eyhtml.com/xinwendongtai/294.html
文章标题:模仿ripro主题很多站的logo扫光效果
文章版权:所发布的内容,部分为原创文章,转载请注明来源,网络转载文章如有侵权请联系我们!
本文最后更新发布于
文章标题:模仿ripro主题很多站的logo扫光效果
文章版权:所发布的内容,部分为原创文章,转载请注明来源,网络转载文章如有侵权请联系我们!
本文最后更新发布于
2021-12-08


