AIJ Scrolling Background

By dunamis Last update Apr 9, 2009 — Installed 11 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0

There are 1 previous version of this script.

// ==UserScript==
// @name           AIJ Scrolling Background
// @namespace      Aaron (I have no idea how to spell his last name)
// @description    Scrolls the background on AIJ
// @include        http://aaronin.jp/boards/*
// ==/UserScript==

var backgroundOffset = 0;
var bgObject = eval('document.body');
var ScrollTimer = window.setInterval(function() { 	backgroundOffset = backgroundOffset + 1; 	if (backgroundOffset > 511)   backgroundOffset = 0; 	bgObject.style.backgroundPosition = "0 " + backgroundOffset; },64);