Hi
looking at my site page source code I have a huge amount of js or whatever, right at the top of the page. This is not good for search engines and it’s causing my pages to load very slowly. This kind of thing:
-webkit-animation-duration: .7333s;
-webkit-animation-name: head-1-anim;
-moz-animation-duration: .7333s;
-moz-animation-name: head-1-anim;
animation-duration: .7333s;
animation-name: head-1-anim;
}@keyframes head-1-anim {
0% {
opacity: .3374;
-webkit-transform: translateY(35.78px) scale(.3374, .3374);
transform: translateY(35.78px) scale(.3374, .3374);
-moz-transform: translateY(35.78px) scale(.3374, .3374);
-o-transform: translateY(35.78px) scale(.3374, .3374);
}
2.2727% {
opacity: .5075;
-webkit-transform: translateY(26.6px) scale(.5075, .5075);
transform: translateY(26.6px) scale(.5075, .5075);
-moz-transform: translateY(26.6px) scale(.5075, .5075);
-o-transform: translateY(26.6px) scale(.5075, .5075);
}
It goes on for miles – starting at line 42 finishing at line 2648 over 2.5 thousand lines of source code.
Can you please let me know what is causing that, and if it’s possible to maybe move it or compress it or put it externally or something? Or better yet get rid of it?
Many thanks.