Difference between revisions of "User:Svip/common.js"

From The Infosphere, the Futurama Wiki
Jump to navigation Jump to search
m
m
Line 1: Line 1:
addOnloadHook(function() {
addOnloadHook(function() {
   var blackout = document.createElement('div');
   var blackout = document.createElement('div');
   blackout.setAttribute('style', 'position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #000; color: #fff; text-align: center; padding: 200px;');
   blackout.setAttribute('style', 'position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #000; color: #fff; text-align: center;');
  var div = document.createElement('div');
  div.setAttribute('style', 'margin: 200px;');
   var h1 = document.createElement('h1');
   var h1 = document.createElement('h1');
   h1.setAttribute('style', 'text-decoration: line-through;');
   h1.setAttribute('style', 'text-decoration: line-through;');
Line 15: Line 17:
   a.setAttribute('style', 'color: #a00;');
   a.setAttribute('style', 'color: #a00;');
   a.appendChild(document.createTextNode('Learn more.'));
   a.appendChild(document.createTextNode('Learn more.'));
   blackout.appendChild(h1);
   div.appendChild(h1);
   blackout.appendChild(p);
   div.appendChild(p);
   blackout.appendChild(p2);
   div.appendChild(p2);
   blackout.appendChild(p3);
   div.appendChild(p3);
   blackout.appendChild(a);
  div.appendChild(a);
   document.body.appendChild(blackout);
   blackout.appendChild(div);
   //document.body.appendChild(blackout);
});
});

Revision as of 16:19, 18 January 2012

addOnloadHook(function() {
  var blackout = document.createElement('div');
  blackout.setAttribute('style', 'position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #000; color: #fff; text-align: center;');
  var div = document.createElement('div');
  div.setAttribute('style', 'margin: 200px;');
  var h1 = document.createElement('h1');
  h1.setAttribute('style', 'text-decoration: line-through;');
  h1.appendChild(document.createTextNode('The Infosphere'));
  var p = document.createElement('p');
  p.appendChild(document.createTextNode('There are currently pending legislation in the U.S. Congress (SOPA and PIPA) that would severely damage the freedom of the Internet, and would also hurt the independence of The Infosphere.'));
  var p2 = document.createElement('p');
  p2.appendChild(document.createTextNode('This legislation could at best force us to block access from American origin to avoid possible censorship of our site.'));
  var p3 = document.createElement('p');
  p3.appendChild(document.createTextNode('If you are a U.S. citizen, write your Congressman.  Tell them that truly beneficial sites like this could be severely limited or entirely removed by the pending legislation.'));
  var a = document.createElement('a');
  a.setAttribute('href', 'http://sopastrike.com');
  a.setAttribute('style', 'color: #a00;');
  a.appendChild(document.createTextNode('Learn more.'));
  div.appendChild(h1);
  div.appendChild(p);
  div.appendChild(p2);
  div.appendChild(p3);
  div.appendChild(a);
  blackout.appendChild(div);
  //document.body.appendChild(blackout);
});