如何用Duplicator把WordPress从本地服务器迁移到线上服务器

为你的的网站Logo添加一个闪光的效果,怎么做的呢?相当简单,几句CSS搞定,而且适合所有网站,下面把代码分享…

为你的的网站Logo添加一个闪光的效果,怎么做的呢?相当简单,几句CSS搞定,而且适合所有网站,下面把代码分享给大家。

CSS代码如下:

/*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; }
}
类别:WordPress开发

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册