CSS 实现 LOGO 扫光效果

建站教程 阅读

逛博客的时候看到很多博客 logo 都有类似知更鸟住的扫光效果,于是就踏着大神的步伐一步步实现 logo 扫光效果,记录如下。 logo 扫光效果思路非常简单:

  1. 用 CSS3 伪元素 :bfore 或 :after 添加一扫光层;

  2. 现用 transform:rotate(-45deg) 旋转 45 度;

  3. CSS 控制位置和动画时间等。

HTML 结构

<div class="logo">
  <a  href="http://localhost/wordpress/" rel="home" itemprop="url">
   <img src="http://localhost/logo.png" alt="logo" itemprop="logo" width="150" height="50">
  </a>
</div>

CSS 代码

/**logo扫光效果CSS**/
.logo{
  position: relative;
  overflow: hidden;
  float:left;
  max-height: 50px;
}
.logo:before {
    content: "";
    position: absolute;
    width: 150px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: blink 1s ease-in 1s infinite;
    animation: blink 1s ease-in 1s infinite;
}
 
@-webkit-keyframes blink {
    from {left: 10px;top: 0;}
    to {left: 320px;top: 0;}
}
@-o-keyframes blink {
    from {left: 10px;top: 0;}
    to {left: 320px;top: 0;}
}
@-moz-keyframes blink {
    from {left: 10px;top: 0;}
    to {left: 320px;top: 0;}
}
@keyframes blink {
    from {left: -100px;top: 0;}
    to {left: 320px;top: 0;}
}

@keyframes 规则可以控制扫光动画的起始位置和终止位置,以上的参数根据自己的 logo 的大小和布局进行调整即可。具体效果查看本站 logo

本文链接:https://niujc.com/com/1431889.html

栏目:建站教程
来源:
标签:css 代码
时间:2022-07-08

晚上好!当前时间为
目前距离2023年春节还有
TOP