reverted loader because of nonfunctionality
This commit is contained in:
parent
025620e97c
commit
dcb817c6a0
3 changed files with 1 additions and 70 deletions
|
@ -18,62 +18,3 @@ div #main
|
||||||
|
|
||||||
#footer
|
#footer
|
||||||
position: static !important
|
position: static !important
|
||||||
|
|
||||||
#loadcontent
|
|
||||||
display: none
|
|
||||||
|
|
||||||
#loader
|
|
||||||
height: 125px
|
|
||||||
text-align: center
|
|
||||||
|
|
||||||
#loader span
|
|
||||||
display: inline-block
|
|
||||||
vertical-align: middle
|
|
||||||
width: 1em
|
|
||||||
height: 1em
|
|
||||||
margin: 50px auto
|
|
||||||
background: #000066
|
|
||||||
border-radius: 0.5em
|
|
||||||
-webkit-animation: loading 1s infinite alternate
|
|
||||||
-moz-animation: loading 1s infinite alternate
|
|
||||||
box-shadow: 1px 1px 1px #444444
|
|
||||||
|
|
||||||
#loader span:nth-of-type(2)
|
|
||||||
background: #3333FF
|
|
||||||
-webkit-animation-delay: 0.2s
|
|
||||||
-moz-animation-delay: 0.2s
|
|
||||||
|
|
||||||
#loader span:nth-of-type(3)
|
|
||||||
background: #3366FF
|
|
||||||
-webkit-animation-delay: 0.4s
|
|
||||||
-moz-animation-delay: 0.4s
|
|
||||||
|
|
||||||
#loader span:nth-of-type(4)
|
|
||||||
background: #6699FF
|
|
||||||
-webkit-animation-delay: 0.6s
|
|
||||||
-moz-animation-delay: 0.6s
|
|
||||||
|
|
||||||
#loader span:nth-of-type(5)
|
|
||||||
background: #99CCFF
|
|
||||||
-webkit-animation-delay: 0.8s
|
|
||||||
-moz-animation-delay: 0.8s
|
|
||||||
|
|
||||||
@-webkit-keyframes loading
|
|
||||||
0%
|
|
||||||
width: 10px
|
|
||||||
height: 10px
|
|
||||||
-webkit-transform: translateZ(0)
|
|
||||||
100%
|
|
||||||
width: 24px
|
|
||||||
height: 24px
|
|
||||||
-webkit-transform: translateZ(-21px)
|
|
||||||
|
|
||||||
@-moz-keyframes loading
|
|
||||||
0%
|
|
||||||
width: 10px
|
|
||||||
height: 10px
|
|
||||||
-moz-transform: translateZ(0)
|
|
||||||
100%
|
|
||||||
width: 24px
|
|
||||||
height: 24px
|
|
||||||
-moz-transform: translateZ(-21px)
|
|
||||||
|
|
|
@ -6,13 +6,7 @@
|
||||||
by <a href=@{UserR ownerName}>#{ownerName}</a> from album <a href=@{AlbumR albumId}>#{albumTitle album}</a>
|
by <a href=@{UserR ownerName}>#{ownerName}</a> from album <a href=@{AlbumR albumId}>#{albumTitle album}</a>
|
||||||
<div id="header" class="item image" data-width=#{dataWidth}>
|
<div id="header" class="item image" data-width=#{dataWidth}>
|
||||||
<div class="inner">
|
<div class="inner">
|
||||||
<img #loadcontent src=@{StaticR $ StaticRoute (drop 2 $ map T.pack $ splitDirectories $ mediumPath medium) []} title=#{mediumTitle medium} style="display: none;">
|
<img src=@{StaticR $ StaticRoute (drop 2 $ map T.pack $ splitDirectories $ mediumPath medium) []} title=#{mediumTitle medium}>
|
||||||
<div #loader data-width=#{dataWidth}>
|
|
||||||
<span>
|
|
||||||
<span>
|
|
||||||
<span>
|
|
||||||
<span>
|
|
||||||
<span>
|
|
||||||
|
|
||||||
<div id="header" class="item" data-width="400">
|
<div id="header" class="item" data-width="400">
|
||||||
<div class="inner">
|
<div class="inner">
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
window.onload = function() {
|
|
||||||
document.getElementById("loader").style.display = "none";
|
|
||||||
document.getElementById("loadcontent").style.display = "block";
|
|
||||||
}
|
|
Loading…
Reference in a new issue