diff --git a/bg.js b/bg.js index 29ba4ca..5fb2fa7 100644 --- a/bg.js +++ b/bg.js @@ -8,14 +8,9 @@ bgImg.onload = function() var factor = (window.innerHeight/this.height); var style = document.createElement('style'); style.type = 'text/css'; - style.innerHTML = '@keyframes bg_anim {\ - from {background-position-x:0%;} \ - to {background-position-x:-' + (this.width*(factor)) + '%;} \ - }'; document.getElementsByTagName('head')[0].appendChild(style); var bodyStyle = document.getElementsByTagName("body")[0].style; - bodyStyle.animationDuration = (5000*(factor)) + "s" bodyStyle.backgroundImage = "url(" + imgSrc + ")"; bodyStyle.backgroundRepeat = "repeat-x"; bodyStyle.backgroundAttachment = "fixed"; @@ -24,4 +19,4 @@ bgImg.onload = function() bodyStyle.animationIterationCount = "infinite"; bodyStyle.animationTimingFunction = "linear"; } -bgImg.src = imgSrc; \ No newline at end of file +bgImg.src = imgSrc;