mirror of
https://github.com/zeldaret/website.git
synced 2026-09-26 21:35:04 -04:00
Remove background scrolling
This commit is contained in:
@@ -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;
|
||||
bgImg.src = imgSrc;
|
||||
|
||||
Reference in New Issue
Block a user