Cycle Scaled Webpages In Iframe?
I'm trying to combine code from two questions previously asked here before. How can I cycle through pages? I want to use this code to create a kiosk and cycle through webpages. I a
Solution 1:
I'd suggest you use this approach: http://forrst.com/posts/css3_dynamic_website_thumbnails_with_an_iframe-CGk
You can cycle through pages by changing the src attribute of the iframe:
document.getElementById('myIframe').src = 'newPage.html';
This question is also pretty useful: jQuery Webpage Preview
Post a Comment for "Cycle Scaled Webpages In Iframe?"