B1KMusic

Newgrounds Image Dump Item fullsize viewer script

May 3rd, 2014
384
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function(){
  2.   if(dimage) {
  3.     var img = document.createElement('img');
  4.     img.src = dimage.src;
  5.     img.style.position = 'absolute'; // edit: changed 'fixed' to 'absolute' so that you can scroll around the image.
  6.     img.style.left = '0px';
  7.     img.style.top = '0px';
  8.     img.style.zIndex = '10000'; // this is to push it above everything else, so the NG navbar doesn't float over it.
  9.     document.body.appendChild(img);
  10.   } else {
  11.     console.log("Something went wrong. Are you on an NG dump item, specifically an image?");
  12.   }
  13. })();
Add Comment
Please, Sign In to add comment