I do websites. My clients log in and they see 5 ideas of their site design - different layout, colors etc.
Now I show them just 5 printscreens, done by me and uploaded by me. Each img links to different under-construction website.
What I want is to eliminate the need to change printscreens manually every time I change something.
I tried iFrame solution, but they are interactive.
Do you have any ideas what's the best approach?
EDIT:
I have (workaround) solution, but only for Chrome.
<a target="_parent" href="http://url.com">
<div>
<iframe id="iframe" src="http://url.com" width="300px" height="300"></iframe>
</div>
</a>
and some CSS to zoom out and make website look like thumbnail:
#iframe{
zoom: 4.0;
-moz-transform: scale(0.25);
-moz-transform-origin: 0 0;
-o-transform: scale(0.25);
-o-transform-origin: 0 0;
-webkit-transform: scale(0.25);
-webkit-transform-origin: 0 0;
}
Chrome = size is perfect, when you click on link inside iframe browser opens my href (so much logic...), when you click inside iframe but not on a link nothing happens.
FF = thumbnail 4 times smaller than on Chrome
IE = thumbnail 4 times larger