CSS Independent Content: Difference between revisions

From GreaseSpot Wiki
Jump to navigationJump to search
mNo edit summary
m (Reverted edits by Ashok323 (talk) to last revision by Arantius)
 
(8 intermediate revisions by 6 users not shown)
Line 10: Line 10:
// The remainder of the line smacks the panel into the bottom left corner, out of your way.
// The remainder of the line smacks the panel into the bottom left corner, out of your way.
// Overflow (in combination with the setTimeout) ensures the iframe fits your entire panel.
// Overflow (in combination with the setTimeout) ensures the iframe fits your entire panel.
var css = 'position:fixed; z-index:9999; bottom:0; left:0; border:0; margin:0; padding:0; ' +
var css = 'position:fixed; z-index:9999; bottom:0px; left:0px; border:0; margin:0; padding:0; ' +
           'overflow:hidden;'
           'overflow:hidden;'


Line 26: Line 26:
     doc.body.style.background = 'red';
     doc.body.style.background = 'red';
     doc.body.innerHTML = 'Test.';
     doc.body.innerHTML = 'Test.';
    // It seems Firefox (at least 3.6) has a bug. It will report offsetWidth less than clientWidth.
    // So try clientWidth and clientHeight instead of offsetWidth and offsetHeight
     iframe.style.width = doc.body.offsetWidth + "px";
     iframe.style.width = doc.body.offsetWidth + "px";
     iframe.style.height = doc.body.offsetHeight + "px";
     iframe.style.height = doc.body.offsetHeight + "px";
Line 31: Line 33:
</pre>
</pre>


The above code will result in a minimal panel always-on-top in the bottom left corner, that grows to contain its contents.
The above code will result in a minimal panel always-on-top in the bottom left corner, that does not grows to contain its contents because iframe.style.height has fixed value.
For a more intrusive lightbox-style panel mid-screen, just drop the two <code>iframe.style</code> lines and change the CSS to e.g.:
For a more intrusive lightbox-style panel mid-screen, just drop the two <code>iframe.style</code> lines and change the CSS to e.g.:


Line 37: Line 39:
// Margin, top, left, width and height center the iframe horizontally and vertically:
// Margin, top, left, width and height center the iframe horizontally and vertically:
var css = 'position:fixed; z-index:9999; border:1px solid black; ' +
var css = 'position:fixed; z-index:9999; border:1px solid black; ' +
           'top:50%; left:50%; width:30em; margin:-15em; 0 0 -10em; height:20em;';
           'top:50%; left:50%; width:30em; margin:-15em 0 0 -10em; height:20em;';
</pre>
</pre>


Line 45: Line 47:
makeFrame(gotFrame);
makeFrame(gotFrame);


function gotGrame(iframe, win, doc) {
function gotFrame(iframe, win, doc) {
   iframe.height = "50";
   iframe.height = "50";
   iframe.style.position = "fixed";
   iframe.style.position = "fixed";
   frame.style.bottom = iframe.style.left = "0";
   iframe.style.bottom = iframe.style.left = "0";
   doc.body.innerHTML = "Hello world!";
   doc.body.innerHTML = "Hello world!";
}
}

Latest revision as of 22:21, 14 August 2013

Any HTML you inject into a site is subject to the CSS rules of that site. This is often what you want: the elements you inject will fit in nicely. But if you inject something – perhaps a configuration panel – that should look the same in pages where styles can vary wildly (e.g. MySpace, eBay) or across multiple sites (e.g. @include *), you may find that you want it exempt from the site CSS.

The solution is to add your panel inside an iframe. Example code:

// position:fixed means stay fixed even when the page scrolls. z-index keeps your iframe on top.
// The remainder of the line smacks the panel into the bottom left corner, out of your way.
// Overflow (in combination with the setTimeout) ensures the iframe fits your entire panel.
var css = 'position:fixed; z-index:9999; bottom:0px; left:0px; border:0; margin:0; padding:0; ' +
          'overflow:hidden;'

var iframe = document.createElement('iframe');
iframe.setAttribute('style', css);

// The about:blank page becomes a blank(!) canvas to modify
iframe.src = 'about:blank';

document.body.appendChild(iframe);

// Make sure Firefox initializes the DOM before we try to use it.
iframe.addEventListener("load", function() {
    var doc = iframe.contentDocument;
    doc.body.style.background = 'red';
    doc.body.innerHTML = 'Test.';
    // It seems Firefox (at least 3.6) has a bug. It will report offsetWidth less than clientWidth.
    // So try clientWidth and clientHeight instead of offsetWidth and offsetHeight
    iframe.style.width = doc.body.offsetWidth + "px";
    iframe.style.height = doc.body.offsetHeight + "px";
}, false);

The above code will result in a minimal panel always-on-top in the bottom left corner, that does not grows to contain its contents because iframe.style.height has fixed value. For a more intrusive lightbox-style panel mid-screen, just drop the two iframe.style lines and change the CSS to e.g.:

// Margin, top, left, width and height center the iframe horizontally and vertically:
var css = 'position:fixed; z-index:9999; border:1px solid black; ' +
          'top:50%; left:50%; width:30em; margin:-15em 0 0 -10em; height:20em;';

As Firefox's iframe handling is rather buggy, you may want to spare yourself much pain by @require'ing this handy library for roughly the above, and use code like this instead:

makeFrame(gotFrame);

function gotFrame(iframe, win, doc) {
  iframe.height = "50";
  iframe.style.position = "fixed";
  iframe.style.bottom = iframe.style.left = "0";
  doc.body.innerHTML = "Hello world!";
}