废话不多说,直接上干货。
把下面代码放到:后台,主题设置,顶部设置,自定义CSS处,保存即可。
/**logo扫光日间**/ .logo-wrapper:after { content: ""; position: absolute; width: 150px; height: 10px; background-color: rgba(255,255,255,.5); -webkit-transform: rotate(-45deg); transform: rotate(-45deg); -webkit-animation: blink 1s ease-in 1s infinite; animation: blink 1s ease-in 1s infinite; } /**logo扫光夜间**/ .dark-open .logo-wrapper:after { content: ""; position: absolute; width: 150px; height: 10px; background-color: rgba(41,48,66,1); -webkit-transform: rotate(-45deg); transform: rotate(-45deg); -webkit-animation: blink 1s ease-in 1s infinite; animation: blink 1s ease-in 1s infinite; }