iframeフレームワークの使用
2022-02-07 05:20:06
開発中に、他のページを取り込んだり、他のページの上に div をホバーさせたりする必要が出てきます。
index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
</head>
<style>
#box {
height: 100%;
width: 100%;
max-width: 640px;
background-color: aqua;
position: fixed;
left: 50%;
right: 50%;
margin-left: -320px;
margin-right: -320px;
}
#paybox {
background-color: aliceblue;
width: 100%;
height: 300px;
max-width: 320px;
position: fixed;
left: 50%;
right: 50%;
margin-left: -160px;
margin-right: -160px;
margin-top: -160px;
top: 50%;
}
#floatW {
text-align: center;
top: 50%;
display: block;
position:relative;
transform: rotateY(-50%);
}
</style>
<body>
<! --Introduce frame-->
<div id="box">
<iframe src="iframe.html" width="100%" height="100%" scrolling="no" marginheight="0& quot; marginwidth="0"></iframe>
</div>
<! -- hover window-->
<div id="paybox">
<span id="floatW">
I am recharge hover window
</span>
</div>
</body>
</html>
iframe.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<style>
#gamebox{
width:100%;
height:100%;
position: absolute;
background: burlywood;
}
</style>
<body>
<div id="gamebox">
</div>
</body>
</html>
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
ハートビート・エフェクトのためのHTML+CSS
-
HTML ホテル フォームによるフィルタリング
-
HTML+cssのボックスモデル例(円、半円など)「border-radius」使いやすい
-
HTMLテーブルのテーブル分割とマージ(colspan, rowspan)
-
ランダム・ネームドロッパーを実装するためのhtmlサンプルコード
-
Html階層型ボックスシャドウ効果サンプルコード
-
QQの一時的なダイアログボックスをポップアップし、友人を追加せずにオンラインで話す効果を達成する方法
-
sublime / vscodeショートカットHTMLコード生成の実装
-
HTMLページを縮小した後にスクロールバーを表示するサンプルコード
-
html のリストボックス、テキストフィールド、ファイルフィールドのコード例