<html>
<head>
<style>
body{background-color: #ccc}
#main{background-color: #f57923
width: 415pxheight:300px
margin: 150px auto
border-radius: 25px}
#left,#right{background-color: #fff
margin-top:40px
height:220px}
#left{float:left
width:250px
margin-left:35px
border-top-right-radius: 65px
z-index: -99999}
#inner{background-color: #f57923
width:140px
height: 170px
margin-top:50px
border-top-right-radius: 40px
margin-left: 55px
z-index:10}
#center{background-color:#fff
position: relative
width: 50px
height: 125px
top:45px
left: 45px
z-index:999999}
#right{float: right
width: 50px
margin-right:35px}
</style>
</head>
<body>
<div id=”main”>
<div id=”left”>
<div id=”inner”>
<div id=”center”></div>
</div>
</div>
<div id=”right”></div>
</div>
</body>
</html>
在浏览器打开的效果
添加修改CSS代码如下 :.logo-site,.logo-sites{position:relativefloat:leftmargin:18px 0 0 10pxwidth:220pxmax-height:50pxoverflow:hiddentransition-duration:.5s}
.logo-site img,.logo-sites img{width:220pxmax-height:50px}@media screen and (max-width:480px){
.logo-site,.logo-sites{width:140px}}@media screen and (min-width:900px){
.logo-site:before{content:""position:absoluteleft:-665pxtop:-460pxwidth:220pxheight:15pxbackground-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 infiniteanimation:searchLights 1s ease-in 1s infinite}}@-webkit-keyframes searchLights{0%{left:-100pxtop:0}to{left:120pxtop:100px}}@-o-keyframes searchLights{0%{left:-100pxtop:0}to{left:120pxtop:100px}}@-moz-keyframes searchLights{0%{left:-100pxtop:0}to{left:120pxtop:100px}}@keyframes searchLights{0%{left:-100pxtop:0}to{left:120pxtop:100px}}
.site-title{font-size:24pxfont-size:2.4remfont-weight:700padding:0 0 2px 0}
.site-name{display:none}@media screen and (min-width:900px){
.logo-site img,.logo-sites img{transition-duration:.8s}
操作流程
把css代码当中的logo-site改成你网站包围logo的css即可(f12键审核元素,即可找到你的logo的css元素)。找到你logo的css名称然后把上面的css代码修改成你的css名称,放入css代码当中即可(防止出错,记得备份!)
以上就是logo添加css扫光效果的方法,当然你也可以运用到其他的地方。
注意,有些模板CSS代码不相同,不能贸然的使用,可能会出现错误,新手不要尝试。
CSS样式可能会是这个样子的:body{background:#999}#container{
width:960px
background:#fff
margin:20px auto
padding:10px
} 下面是一个效果预览: 设置为相对定位,当我们定位logo的时候,我们希望它的位置是相对于容器的,因此使用相对定位:
#container{
width:960px
background:#fff
margin:20px auto
padding:10px
position:relative
} 将它定位到盒子的外面现在你需要做的就仅仅是定位logo,将其水平定位,让它从容器中突出出来。
#logo{position:absolute