Along the same โResponsive Designโ themes of Responsive Web Design Primer Tutorial, we stumbled upon the excellent W3Schools Responsive Design Based Start Page Idea which inspired us to retry RJM Programming Landing Page thoughts โฆ
- separating out totally โuninvolvedโ Landing Page calls hooked up with a new index.php (actually just HTML) Landing Page incarnation that has better Responsive Design credentials โฆ from โฆ
- any other call of any complexity or having a query string etcetera, reverting to the โold wayโ
โฆ new paradigm? So, why keep the old way? Well, we packed the โold wayโ with content rich functionality, and do not want to ditch that yet, but maybe over time?!
Youโll see, though, using the new indexphp Responsive Design Landing Page incarnation โฆ
โฆ how the clutter melts away like a hot knife through margarinebutter!
Previous relevant Responsive Web Design Primer Tutorial is shown below.
Today we wanted to tip our toes into the vast subject of โresponsive web designโ โฆ
Responsive web design (RWD) is an approach to web design that makes web pages render well on a variety of devices and window or screen sizes from minimum to maximum display size. Recent work also considers the viewer proximity as part of the viewing context as an extension for RWD.[1] Content, design and performance are necessary across all devices to ensure usability and satisfaction.[2][3][4][5]
โฆ coming at it from the idea โCan a responsive shell webpage host a non-responsive iframe?โ
In turn this got us to the excellent ideas of this webpage which weโll try out for a while โฆ
- honing in on our โLanding Page and friendsโ set of unresponsively designed webpages โฆ
- honing in on iPhone sized devices (ie. not iPads nor laptops) โฆ
- host web browser address bar calls of โLanding Page and friendsโ set of unresponsively designed webpages within a caller
html responsively web designed shell supervisory webpage and start using some of that โฆ
Unresponsive Landing Page Responsive Shell around Unresponsive Landing Page โฆ as food for (your) thought โฆ
function bodonl() {
var wasih=document.body.innerHTML;
var huhd=document.getElementById('Container').getBoundingClientRect();
var pb=0;
if (eval('' + huhd.height) > eval('' + huhd.width)) {
isportrait=true;
pb=eval(eval('' + huhd.width) / eval('' + huhd.height) * 100.0);
nowih='<div id="Container" style="padding-right:' + pb + '%; position:relative; display:block; height: 100vh;"><iframe' + wasih.split('<iframe')[1].split('</div>')[0].replace('" frameborder', fname + '" style="position:absolute; top:0; left: 0;" frameborder') + '</div>';
//if (navigator.userAgent.match(/Android|BlackBerry|iPhone|iPod|Opera Mini|IEMobile/i)) {
//document.getElementById('myvis').setAttribute('initial-scale','0.5');
//}
} else {
isportrait=false;
pb=eval(eval('' + huhd.height) / eval('' + huhd.width) * 100.0);
nowih='<div id="Container" style="padding-bottom:' + pb + '%; position:relative; display:block; width: 100%;"><iframe' + wasih.split('<iframe')[1].split('</div>')[0].replace('" frameborder', fname + '" style="position:absolute; top:0; left: 0;" frameborder') + '</div>';
}
document.body.innerHTML=nowih;
}If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.