Mockup viewer bookmarklet

I usually view mockups in a browser, so that the impression I get is as close as possible to reality (I learned this the hard way: A mockup that seemed great in the neutral and minimalistic environment of a picture viewer, ended up looking way too fanc…


This content originally appeared on Lea Verou’s blog and was authored by Lea Verou

I usually view mockups in a browser, so that the impression I get is as close as possible to reality (I learned this the hard way: A mockup that seemed great in the neutral and minimalistic environment of a picture viewer, ended up looking way too fancy when viewed in a browser, something that I realized after having worked for 6 months on the site). If you do the same, I’m sure you’ll feel my pain: Every time I do that, I have to carefully scroll down just as much as to hide the margin that the browser adds, and left just as much as to center the image. Not to mention the click required to enlarge the image to full-size.

Not any more! I was so fed up today, that I wrote a little bookmarklet that does this. It enlarges the image to full size, removes the margins and scrolls the page left so that the image is centered. It works on any recent browser I’ve tested, and I think it will probably work in most browsers that web designers use (hint: not old IEs) :P

Enjoy.

Mockup viewer

JS code:

(function(){
	document.body.style.margin = 0;
	var inner = window.innerWidth || document.body.clientWidth, img = document.getElementsByTagName('img')\[0\];
	img.removeAttribute('width');
	img.removeAttribute('height');
	document.body.scrollLeft = (img.offsetWidth - inner)/2;
})();

If only it could also write the XHTML & CSS for the site… :P


This content originally appeared on Lea Verou’s blog and was authored by Lea Verou


Print Share Comment Cite Upload Translate Updates
APA

Lea Verou | Sciencx (2009-03-18T00:00:00+00:00) Mockup viewer bookmarklet. Retrieved from https://www.scien.cx/2009/03/18/mockup-viewer-bookmarklet/

MLA
" » Mockup viewer bookmarklet." Lea Verou | Sciencx - Wednesday March 18, 2009, https://www.scien.cx/2009/03/18/mockup-viewer-bookmarklet/
HARVARD
Lea Verou | Sciencx Wednesday March 18, 2009 » Mockup viewer bookmarklet., viewed ,<https://www.scien.cx/2009/03/18/mockup-viewer-bookmarklet/>
VANCOUVER
Lea Verou | Sciencx - » Mockup viewer bookmarklet. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2009/03/18/mockup-viewer-bookmarklet/
CHICAGO
" » Mockup viewer bookmarklet." Lea Verou | Sciencx - Accessed . https://www.scien.cx/2009/03/18/mockup-viewer-bookmarklet/
IEEE
" » Mockup viewer bookmarklet." Lea Verou | Sciencx [Online]. Available: https://www.scien.cx/2009/03/18/mockup-viewer-bookmarklet/. [Accessed: ]
rf:citation
» Mockup viewer bookmarklet | Lea Verou | Sciencx | https://www.scien.cx/2009/03/18/mockup-viewer-bookmarklet/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.