fix lazyload board theme
This commit is contained in:
parent
695de0a19c
commit
a0ff7fa07d
1 changed files with 14 additions and 0 deletions
|
@ -111,6 +111,20 @@
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: #666;
|
color: #666;
|
||||||
}
|
}
|
||||||
|
/*----lazyloading---*/
|
||||||
|
.loader{
|
||||||
|
background: url('images/loader.gif') center center no-repeat;
|
||||||
|
}
|
||||||
|
.b-lazy {
|
||||||
|
-webkit-transition: opacity 100ms ease-in-out 10ms;
|
||||||
|
-moz-transition: opacity 100ms ease-in-out 10ms;
|
||||||
|
-o-transition: opacity 100ms ease-in-out 10ms;
|
||||||
|
transition: opacity 100ms ease-in-out 10ms;
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
.b-lazy.b-loaded {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
/*----responsive----*/
|
/*----responsive----*/
|
||||||
#gallery li {
|
#gallery li {
|
||||||
width: 24%;
|
width: 24%;
|
||||||
|
|
Loading…
Reference in a new issue