css代码|图片上面闪过一条白痕-图片闪烁(css中点击图片出现一行字)

时间:2022-02-06 23:36:33   阅读:1231
<style type="text/css">

.logo_flash{ position: relative; margin: 0 auto; transition-duration: .5s; }
.logo_flash{ width: 255px; overflow: hidden; }
.logo_flash: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 1s ease-in 1s infinite;
-o-animation: searchLights 1s ease-in 1s infinite;
animation: searchLights 1s ease-in 1s infinite;
}
@-webkit-keyframes searchLights {
0% { left: -100px; top: 0; }
to { left: 120px; top: 100px; }
}
@-o-keyframes searchLights {
0% { left: -100px; top: 0; }
to { left: 120px; top: 100px; }
}
@-moz-keyframes searchLights {
0% { left: -100px; top: 0; }
to { left: 120px; top: 100px; }
}
@keyframes searchLights {
0% { left: -100px; top: 0; }
to { left: 120px; top: 100px; }
}
</style>


<div class="logo_flash">
  <a href="https://www.fuzhufakawang.com"><img src="https://www.fuzhufakawang.com/Public/Admin/202201229307.png" width="255" height="75" alt=""></a>
</div>


留意logo_flash

css代码|图片上面闪过一条白痕-图片闪烁(css中点击图片出现一行字)

上一篇:css代码|除去a标签的下划线(css去掉a标签的下划线)

下一篇:css代码|图片自动缩放或者标签缩放(css图片自动缩放)

网友评论