7B2主题是一款深受用户喜爱的WordPress主题,为了提升网站的视觉效果和用户体验,我们将为其Logo添加闪光扫过的动效。这一动效不仅能使Logo更加生动有趣,还能吸引访问者的注意力,使网站更具活力和吸引力。通过本文,您将了解到如何为7B2主题的Logo实现这一炫酷的闪光扫过动效,从而让您的网站在众多竞争中脱颖而出。
代码加入到你主题的style.css文件里面:
/* logo扫光 */
.logo{
position:relative;
overflow:hidden;
margin: 0px 0 0 0px;
}
.logo:before{
content:"";
position: absolute;
left: -665px;
top: -460px;
width: 200px;
height: 15px;
background-color: rgba(255,255,255,.5);
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
-webkit-animation: searchLights 6s ease-in 0s infinite;
-o-animation: searchLights 6s ease-in 0s infinite;
animation: searchLights 6s ease-in 0s infinite;
}
@-moz-keyframes searchLights{
50%{
left: -100px;
top: 0;
}
65%{
left: 120px;
top: 100px;
}
}
@keyframes searchLights{
40%{
left: -100px;
top: 0;
}
60%{
left: 120px;
top: 100px;
}
80%{
left: -100px;
top: 0px;
}
}
/* logo扫光结束 */
欢迎访问秀主题博客,分享简单实用WP教程