iframeで表示された時に
ヘッダとかパンくずを非表示にする
─ javascriptを使う簡易版 ─
skin.html を 編集する
skin.htmlのbodyタグとheaderタグの間にscriptタグとstyleタグをペースト
あなたの.comを親parentのurlのドメイン名に書き直す
<body>
<script type="text/javascript">
(function() {
if((window != window.parent)&&(/あなたの.com/.test(document.referrer))) {
document.body.setAttribute("class", "iframe");
}
})()
</script>
<style type="text/css">
/*iframeの時は次のタグを非表示にする*/
body.iframe header,
body.iframe h1,
body.iframe nav,
body.iframe footer{
display:none;
}
/*iframeの時は画像のリンクを無効にする*/
body.iframe .img{
pointer-events:none;
}
</style>
<header>
仕組み
iframeで読み込まれている/親ページのURLが取得できる
指定した親ページのURLでない時
何もしないスタイルは適用されない
普通に表示される
<body>
指定した親ページのURLの時
bodyタグにクラス属性を追加する
スタイルが適用される
<body class="iframe">
iframeで読み込まれていない/親ページのURLが取得できない
普通に表示される
<body>