私は、ある種のビジュアルエミュレータを開発しています。ここでdiv内の特定の次元にdivを付けるには
は私が望むものです:
上記画像は、iPhoneのワイヤフレームです。私はdivまたは他の要素をiPhoneの画面の境界内に挿入したいと思います。
iframeを検索しました。しかし、html5はスクロールビューをサポートしていません。だから私はそれを別の方法でやる方法を模索していた。
私はブートストラップ3を使用しており、反応しやすいようにしたいと考えています(FYI)。
EDIT だから私はSoviutの回答を試してみました:
これは私のHTMLの一部です:
<div id="page" class="row">
<div id="iOS" class="col-md-6">
<div id="iphone-wireframe" class="container">
<div class="content">
<h1>This is heading</h1>
<p>This is some content This is some content This is some content This is some content This is some
content This is some content This is some content This is some content.</p>
<p>This is some content This is some content This is some content This is some content This is some
content This is some content This is some content This is some content.</p>
<p>This is some content This is some content This is some content This is some content This is some
content This is some content This is some content This is some content.</p>
<p>This is some content This is some content This is some content This is some content This is some
content This is some content This is some content This is some content.</p>
<p>This is some content This is some content This is some content This is some content This is some
content This is some content This is some content This is some content.</p>
<p>This is some content This is some content This is some content This is some content This is some
content This is some content This is some content This is some content.</p>
<p>This is some content This is some content This is some content This is some content This is some
content This is some content This is some content This is some content.</p>
<p>This is some content This is some content This is some content This is some content This is some
content This is some content This is some content This is some content.</p>
<p>This is some content This is some content This is some content This is some content This is some
content This is some content This is some content This is some content.</p>
<p>This is some content This is some content This is some content This is some content This is some
content This is some content This is some content This is some content.</p>
<p>This is some content This is some content This is some content This is some content This is some
content This is some content This is some content This is some content.</p>
<p>This is some content This is some content This is some content This is some content This is some
content This is some content This is some content This is some content.</p>
</div>
</div>
</div>
私も割合などを使用して、とすることによって、それはより敏感にするためにCSSを微調整img-responsiveの特性を模倣しています。私のCSSの
パート:
.container {
width: 65%;
height: 90%;
margin-top: 40px;
background-image: url("/assets/res/img/iPhone-wireframe.png");
background-repeat: no-repeat;
background-size: contain;
background-position: center;
}
.content {
margin: 81px auto auto;
width: 67.5%;
height: 75.5%;
background: #FFF;
overflow: auto;
}
結果は、それが微調整されたときに最適です。それにも反応しますが、画像とテキストは同期して反応しません。
すると完璧に:私はちょうど絵で表示されますので、言葉でこれを説明するのか分からない
任意のサンプルコード?何を試しましたか?私はこれをあなたのためにコード化しません。もしあなたがこれを試みたら、あなたの試みを投稿してください。 –
私はiframeを考えて、HTML5のスクロールをサポートしていないw3schoolsの文書によると言いました。このために、私はちょうど正しい方向にポインターやアイデアを求めています。あなたが他の方法を感じた場合、私は私の質問を編集します。 – GauravPandey
@AdamBuchananSmith:私はSoviutの答えの助けを借りて、私の質問を更新しました。 – GauravPandey